diff options
| author | Marc Abramowitz <marc@marc-abramowitz.com> | 2016-03-07 18:47:38 -0800 |
|---|---|---|
| committer | Marc Abramowitz <marc@marc-abramowitz.com> | 2016-03-07 18:47:38 -0800 |
| commit | 7e91ad9c058f10418c086c8b135bc6123c1a8f92 (patch) | |
| tree | 2fc96c7d2286322c376f5d27b36372bcd6134370 | |
| parent | 8b4f7debdb530ba41de6bf125db6953caf6e3f94 (diff) | |
| download | paste-7e91ad9c058f10418c086c8b135bc6123c1a8f92.tar.gz | |
Check paste.wsgilib.add_close._closed
| -rw-r--r-- | tests/test_wsgilib.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_wsgilib.py b/tests/test_wsgilib.py index f9366fc..72573cf 100644 --- a/tests/test_wsgilib.py +++ b/tests/test_wsgilib.py @@ -32,6 +32,7 @@ def test_add_close_bytes(): assert lst == [b'a', b'b', b'c'] assert close_func_called + assert obj._closed def test_add_close_unicode(): @@ -48,3 +49,4 @@ def test_add_close_unicode(): assert lst == ['a', 'b', 'c'] assert close_func_called + assert obj._closed |
