This commit is contained in:
lcaggio 2023-01-31 00:02:30 +01:00
parent 0e5f2f71a2
commit 2584eb149c
1 changed files with 7 additions and 1 deletions

View File

@ -12,8 +12,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import os
import pytest
FIXTURES_DIR = os.path.join(os.path.dirname(__file__), 'fixture')
def test_resources(e2e_plan_runner):
"Test that plan works and the numbers of resources is as expected."
modules, resources = e2e_plan_runner()
modules, resources = e2e_plan_runner(FIXTURES_DIR)
assert len(modules) == 5
assert len(resources) == 18