Beispiel #1
0
 def test_can_get_manifest_path_from_asset_path(self):
     manifest = Manifest()
     path = manifest.get_path(self.TEST_MANIFEST_PATH)
     assert "tests/manifest.json" in path
Beispiel #2
0
 def test_can_get_manifest_path_from_asset_path(self):
     manifest = Manifest()
     path = manifest.get_path(self.TEST_MANIFEST_PATH)
     assert "tests/manifest.json" in path
Beispiel #3
0
    def test_can_open_manifest_path_from_settings(self):
        settings = Settings(compiled_asset_root=self.TEST_MANIFEST_PATH)

        manifest = Manifest(settings)
        path = manifest.get_path()
        assert "tests/manifest.json" in path
Beispiel #4
0
    def test_can_open_manifest_path_from_settings(self):
        settings = Settings(compiled_asset_root=self.TEST_MANIFEST_PATH)

        manifest = Manifest(settings)
        path = manifest.get_path()
        assert "tests/manifest.json" in path