diff options
Diffstat (limited to 'test/test_console.py')
-rw-r--r-- | test/test_console.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/test_console.py b/test/test_console.py index cda61bd5..399cc485 100644 --- a/test/test_console.py +++ b/test/test_console.py @@ -196,6 +196,15 @@ class uFlow(libpry.AutoTree): f.backup() f.revert() + def test_getset_state(self): + f = tflow() + state = f.get_state() + assert f == console.ConsoleFlow.from_state(state) + f.response = tresp() + f.request = f.response.request + state = f.get_state() + assert f == console.ConsoleFlow.from_state(state) + def test_simple(self): f = tflow() assert f.get_text() |