diff options
| author | Michael Merickel <michael@merickel.org> | 2019-12-04 01:13:52 -0600 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2019-12-04 23:53:31 -0600 |
| commit | f6cb1efa8fba683bdc5c9b4a645f9357fe2e6208 (patch) | |
| tree | c78f1d8c1c2d695b14f1bfd5358ca05e0c5b2ee0 /tests/pkgs/static_encodings | |
| parent | 4d276efe5fd806b74d604c3c8817c0c72808c491 (diff) | |
| download | pyramid-f6cb1efa8fba683bdc5c9b4a645f9357fe2e6208.tar.gz pyramid-f6cb1efa8fba683bdc5c9b4a645f9357fe2e6208.tar.bz2 pyramid-f6cb1efa8fba683bdc5c9b4a645f9357fe2e6208.zip | |
negotiate the best static asset using supported encodings
Diffstat (limited to 'tests/pkgs/static_encodings')
| -rw-r--r-- | tests/pkgs/static_encodings/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/pkgs/static_encodings/__init__.py b/tests/pkgs/static_encodings/__init__.py new file mode 100644 index 000000000..3b86a1a15 --- /dev/null +++ b/tests/pkgs/static_encodings/__init__.py @@ -0,0 +1,2 @@ +def includeme(config): + config.add_static_view('/', 'tests:fixtures', content_encodings=['gzip']) |
