diff options
| author | 2024-01-27 22:27:41 +0800 | |
|---|---|---|
| committer | 2024-01-27 22:27:41 +0800 | |
| commit | 1d9a500b727e8879cdaeb9c378ac717001c56ccc (patch) | |
| tree | 58d3dd78970d2458372ac67353163f602c0cf017 /tests/test_core.py | |
| parent | 69e46bfe4d5429f9c3eebb1747bd8e5290f7823b (diff) | |
| download | infini-1d9a500b727e8879cdaeb9c378ac717001c56ccc.tar.gz infini-1d9a500b727e8879cdaeb9c378ac717001c56ccc.zip | |
:sparkles: feat(router): supports alias router
Diffstat (limited to 'tests/test_core.py')
| -rw-r--r-- | tests/test_core.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 01d7ecb4..11a8c57d 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -4,7 +4,7 @@ from infini.handler import Handler from infini.input import Input from infini.interceptor import Interceptor from infini.output import Output -from infini.router import ContainsRouter, StartswithRouter +from infini.router import Contains, Startswith def test_core(): @@ -20,7 +20,7 @@ def test_core(): interceptor.interceptors = [ { "priority": 1, - "router": ContainsRouter("简律纯"), + "router": Contains("简律纯"), "handler": intercept_jianlvchun, } ] @@ -38,12 +38,12 @@ def test_core(): handler.handlers = [ { "priority": 2, - "router": StartswithRouter(".add"), + "router": Startswith(".add"), "handler": add, }, { "priority": 1, - "router": StartswithRouter("."), + "router": Startswith("."), "handler": cmd, }, ] |
