You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

create_test.py 223B

12345678
  1. from tests import DDS
  2. from tests.fileutil import ensure_dir
  3. def test_create_catalog(dds: DDS) -> None:
  4. dds.scope.enter_context(ensure_dir(dds.build_dir))
  5. dds.catalog_create()
  6. assert dds.catalog_path.is_file()