A web scraper build to search specific information for a given compound (and its pseudonyms)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

The tests had old config file assumptions

+2 -2
+2 -2
tests/test_gui.py
··· 7 7 pass 8 8 9 9 def test_empty_attributes(self): 10 - self.test_gui = gui.GUI(None, '../GUI.cfg.sample', in_source=False) 10 + self.test_gui = gui.GUI(None, config_file="../GUI.cfg.sample", in_source=True) 11 11 self.test_gui.window.after(9, self.test_gui.prepare_search) 12 12 self.test_gui.window.after(11, self.test_gui.window.destroy) 13 13 self.test_gui.run() ··· 20 20 21 21 22 22 def test_no_configurations(self): 23 - self.test_gui = gui.GUI(None) 23 + self.test_gui = gui.GUI(None, config_file="../GUI.cfg.sample") 24 24 self.test_gui.configurator = gui.ConfigImporter('') 25 25 self.test_gui.finish_with_search = True 26 26 self.test_gui.window.after(9, self.test_gui.prepare_search)