Exemplo n.º 1
0
 def test__gooeyAutoStart(self):
     """Verifies that issue #201 doesn't regress and auto_start skips the config
     screen and hops right into the client's program"""
     from gooey.tests.integration import runner
     runner.run_integration(auto_start_module,
                            self.verifyAutoStart,
                            auto_start=True)
Exemplo n.º 2
0
 def test__gooeyValidation(self):
     """Verifies that custom validation routines supplied via gooey_options prevents
     the user from advancing past the configuration page when they fail"""
     from gooey.tests.integration import runner
     runner.run_integration(validations_module, self.verifyValidators)
Exemplo n.º 3
0
 def test_gooeySubparserMode(self):
     """ Tests the happy path through the subparser run mode of Gooey """
     from gooey.tests.integration import runner
     runner.run_integration(all_widgets_subparser_module, self.gooeySanityTest)
 def test_gooeyNormalRun(self):
     """ Tests the happy path through the default run mode of Gooey """
     from gooey.tests.integration import runner
     runner.run_integration(all_widgets_module, self.gooeySanityTest)