diff --git a/scripts/scil_sh_to_aodf.py b/scripts/scil_sh_to_aodf.py old mode 100644 new mode 100755 diff --git a/scripts/tests/test_search_keywords.py b/scripts/tests/test_search_keywords.py index 600bd3402..5eda2b4fc 100644 --- a/scripts/tests/test_search_keywords.py +++ b/scripts/tests/test_search_keywords.py @@ -5,3 +5,18 @@ def test_help_option(script_runner): ret = script_runner.run('scil_search_keywords.py', '--help') assert ret.success + + +def test_no_verbose(script_runner): + ret = script_runner.run('scil_search_keywords.py', 'mti') + assert ret.success + + +def test_verbose_option(script_runner): + ret = script_runner.run('scil_search_keywords.py', 'mti', '-v') + assert ret.success + + +def test_not_find(script_runner): + ret = script_runner.run('scil_search_keywords.py', 'toto') + assert ret.success