Archived
1
0

We should never include an actual config file in our repository

This commit is contained in:
Jip J. Dekker 2014-06-21 00:48:59 +02:00
parent b47d7d5e63
commit 4dcc8e6afe
3 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@ -7,7 +7,7 @@
#may contain authentication information #may contain authentication information
sources.cfg sources.cfg
#Another of our config files #Another of our config files
GUI/gui.cfg GUI.cfg
#THINGS WE WOULD NEVER EVER WANT! #THINGS WE WOULD NEVER EVER WANT!
#ignore thumbnails created by windows #ignore thumbnails created by windows

View File

@ -7,7 +7,7 @@ class TestGUI(unittest.TestCase):
pass pass
def test_empty_attributes(self): def test_empty_attributes(self):
self.test_gui = gui.GUI(None, '../GUI/GUI.cfg', in_source=False) self.test_gui = gui.GUI(None, '../GUI.cfg.sample', in_source=False)
self.test_gui.window.after(9, self.test_gui.prepare_search) self.test_gui.window.after(9, self.test_gui.prepare_search)
self.test_gui.window.after(11, self.test_gui.window.destroy) self.test_gui.window.after(11, self.test_gui.window.destroy)
self.test_gui.run() self.test_gui.run()