File size: 292 Bytes
e8055cf | 1 2 3 4 5 6 7 8 9 10 11 | from experiments import config, loader
def test_experiments_package_exposes_hypotheses_directory():
assert config.EXPERIMENT_ROOT.name == "experiments"
assert config.HYPOTHESES_ROOT.is_dir()
def test_experiments_have_discoverable_hypotheses():
assert loader.list_hypotheses()
|