diff options
| author | Chris McDonough <chrism@plope.com> | 2023-08-21 18:27:04 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2023-08-21 18:27:04 -0400 |
| commit | d4a821c7b134b983e72e653b17b5a25507552620 (patch) | |
| tree | 6831a48b6dc4439621ea157c4a3967e8e3b1fa46 /tests/pkgs/static_assetspec_nulbyte | |
| parent | 2af309223d6050feff3f85701a93166f3d4b5fee (diff) | |
| download | pyramid-d4a821c7b134b983e72e653b17b5a25507552620.tar.gz pyramid-d4a821c7b134b983e72e653b17b5a25507552620.tar.bz2 pyramid-d4a821c7b134b983e72e653b17b5a25507552620.zip | |
re-add integration tests (bad merge) and add integration test for nulbyte check when asset spec override exists
Diffstat (limited to 'tests/pkgs/static_assetspec_nulbyte')
| -rw-r--r-- | tests/pkgs/static_assetspec_nulbyte/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/pkgs/static_assetspec_nulbyte/__init__.py b/tests/pkgs/static_assetspec_nulbyte/__init__.py index 49cebab3e..5ac6e8cf5 100644 --- a/tests/pkgs/static_assetspec_nulbyte/__init__.py +++ b/tests/pkgs/static_assetspec_nulbyte/__init__.py @@ -1,2 +1,5 @@ def includeme(config): config.add_static_view('/', 'tests:fixtures/static') + config.add_static_view('/sub', 'tests:fixtures/static/subdir') + config.override_asset('tests:fixtures/static/subdir', + 'tests:fixtures/static') |
