diff options
Diffstat (limited to 'xtesting/tests/unit/core/test_behaveframework.py')
-rw-r--r-- | xtesting/tests/unit/core/test_behaveframework.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/xtesting/tests/unit/core/test_behaveframework.py b/xtesting/tests/unit/core/test_behaveframework.py index 2baaba03..00515cee 100644 --- a/xtesting/tests/unit/core/test_behaveframework.py +++ b/xtesting/tests/unit/core/test_behaveframework.py @@ -85,7 +85,7 @@ class RunTesting(unittest.TestCase): # pylint: disable=missing-docstring suites = ["foo"] - tags = [] + tags = ["bar"] def setUp(self): self.test = behaveframework.BehaveFramework( @@ -119,13 +119,14 @@ class RunTesting(unittest.TestCase): self.test.EX_OK) html_file = os.path.join(self.test.res_dir, 'output.html') args_list = [ - '--tags=', '--junit', + '--junit', '--junit-directory={}'.format(self.test.res_dir), '--format=json', '--outfile={}'.format(self.test.json_file)] if six.PY3: args_list += [ '--format=behave_html_formatter:HTMLFormatter', '--outfile={}'.format(html_file)] + args_list.append('--tags='+','.join(self.tags)) args_list.append('foo') args[0].assert_called_once_with(args_list) mock_method.assert_called_once_with() @@ -153,13 +154,14 @@ class RunTesting(unittest.TestCase): status) html_file = os.path.join(self.test.res_dir, 'output.html') args_list = [ - '--tags=', '--junit', + '--junit', '--junit-directory={}'.format(self.test.res_dir), '--format=json', '--outfile={}'.format(self.test.json_file)] if six.PY3: args_list += [ '--format=behave_html_formatter:HTMLFormatter', '--outfile={}'.format(html_file)] + args_list.append('--tags='+','.join(self.tags)) if console: args_list += ['--format=pretty', '--outfile=-'] args_list.append('foo') |