You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
450 B

  1. from gooey.python_bindings.config_generator import *
  2. def test_create_from_parser(empty_parser):
  3. build_spec = create_from_parser(empty_parser,'.')
  4. assert build_spec['manual_start'] == True
  5. def test_create_from_parser_show_config(empty_parser):
  6. build_spec = create_from_parser(empty_parser,
  7. '.',
  8. show_config=True)
  9. assert build_spec['program_description'] == 'description'