diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-03-09 11:07:08 +0000 |
---|---|---|
committer | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-03-20 09:38:41 +0000 |
commit | 7e416e43695de45726fdef2e0134b55e565c130d (patch) | |
tree | 1f21ff9cd5b072f58e76faa8dd5f3790e85858f9 /tests/format | |
parent | bbc5c972a11bd817a5d051aad6b5f791670b6812 (diff) | |
download | buildstream-7e416e43695de45726fdef2e0134b55e565c130d.tar.gz |
tests: remove duplicated tests
The removed tests duplicate tests in the same file with the same name.
Diffstat (limited to 'tests/format')
-rw-r--r-- | tests/format/include.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/format/include.py b/tests/format/include.py index d065f2447..c4fa9adb5 100644 --- a/tests/format/include.py +++ b/tests/format/include.py @@ -309,16 +309,3 @@ def test_local_to_junction(cli, tmpdir, datafiles): result.assert_success() loaded = _yaml.load_data(result.output) assert loaded['included'] == 'True' - - -@pytest.mark.datafiles(DATA_DIR) -def test_include_project_file(cli, datafiles): - project = os.path.join(str(datafiles), 'string') - result = cli.run(project=project, args=[ - 'show', - '--deps', 'none', - '--format', '%{vars}', - 'element.bst']) - result.assert_success() - loaded = _yaml.load_data(result.output) - assert loaded['included'] == 'True' |