Browse Source

update tests

pull/240/head
chriskiehl 7 years ago
parent
commit
6da849689a
2 changed files with 3 additions and 3 deletions
  1. 3
      gooey/tests/all_widgets.py
  2. 3
      gooey/tests/test_integration.py

3
gooey/tests/all_widgets.py

@ -7,7 +7,8 @@ from gooey import GooeyParser
show_sidebar=True,
dump_build_config=True,
show_success_modal=False,
force_stop_is_error=False
force_stop_is_error=False,
language='chinese'
)
def main():
desc = "Example application to show Gooey's various widgets"

3
gooey/tests/test_integration.py

@ -6,7 +6,6 @@ from concurrent import futures
from gooey.gui import application
from gooey.gui.lang.i18n import _
class TestGooeyIntegration(unittest.TestCase):
"""
A few quick integration tests that exercise Gooey's various run modes
@ -46,7 +45,7 @@ class TestGooeyIntegration(unittest.TestCase):
def test_gooeyNormalRun(self):
""" Tests the happy path through the default run mode of Gooey """
self.performTest('./gooey/tests/gooey_config__normal.json', self.gooeySanityTest)
def test_gooeySubparserMode(self):
""" Tests the happy path through the subparser run mode of Gooey """
self.performTest('./gooey/tests/gooey_config__subparser.json', self.gooeySanityTest)

Loading…
Cancel
Save