diff options
Diffstat (limited to 'test/test_pathod.py')
| -rw-r--r-- | test/test_pathod.py | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/test/test_pathod.py b/test/test_pathod.py index 966ae12e..e00694cd 100644 --- a/test/test_pathod.py +++ b/test/test_pathod.py @@ -15,7 +15,11 @@ class _TestApplication:  class TestPathod:      def test_instantiation(self): -        p = pathod.Pathod(("127.0.0.1", 0)) +        p = pathod.Pathod( +                ("127.0.0.1", 0), +                anchors = [(".*", "200")] +            ) +        assert p.anchors      def test_logging(self):          p = pathod.Pathod(("127.0.0.1", 0)) | 
