diff options
-rw-r--r-- | tests/pipeline/load.py | 18 | ||||
-rw-r--r-- | tests/pipeline/load/simple/project.conf | 3 | ||||
-rw-r--r-- | tests/pipeline/load/simple/simple.bst | 5 |
3 files changed, 0 insertions, 26 deletions
diff --git a/tests/pipeline/load.py b/tests/pipeline/load.py deleted file mode 100644 index 9f51d8e33..000000000 --- a/tests/pipeline/load.py +++ /dev/null @@ -1,18 +0,0 @@ -import os -import pytest -from buildstream._exceptions import ErrorDomain -from buildstream import _yaml -from tests.testutils.runcli import cli - -DATA_DIR = os.path.join( - os.path.dirname(os.path.realpath(__file__)), - 'load', -) - - -@pytest.mark.datafiles(os.path.join(DATA_DIR, 'simple')) -def test_load_simple(cli, datafiles): - basedir = os.path.join(datafiles.dirname, datafiles.basename) - result = cli.get_element_config(basedir, 'simple.bst') - - assert(result['configure-commands'][0] == 'pony') diff --git a/tests/pipeline/load/simple/project.conf b/tests/pipeline/load/simple/project.conf deleted file mode 100644 index 2027cc27a..000000000 --- a/tests/pipeline/load/simple/project.conf +++ /dev/null @@ -1,3 +0,0 @@ -# Basic project configuration that doesnt override anything -# -name: pony diff --git a/tests/pipeline/load/simple/simple.bst b/tests/pipeline/load/simple/simple.bst deleted file mode 100644 index cd1f73968..000000000 --- a/tests/pipeline/load/simple/simple.bst +++ /dev/null @@ -1,5 +0,0 @@ -kind: autotools -description: Some kinda autotools element -config: - configure-commands: - - pony |