From 96b10ca486c88e6918aabdf8d90cde3a91cf8e1a Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Sat, 12 Mar 2011 15:08:06 +1300 Subject: console.py 100% test coverage --- test/test_console.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/test_console.py b/test/test_console.py index 90ebdc55..034f8ea1 100644 --- a/test/test_console.py +++ b/test/test_console.py @@ -105,6 +105,15 @@ class uformat_flow(libpry.AutoTree): assert ('method', '[replay] ') in console.format_flow(f, True) assert ('method', '[replay] ') in console.format_flow(f, True, True) + f.response.code = 404 + assert ('error', '404') in console.format_flow(f, True, True) + f.response.headers["content-type"] = ["text/html"] + assert ('text', ' text/html') in console.format_flow(f, True, True) + + f.response =None + f.error = proxy.Error(f.request, "error") + assert ('error', 'error') in console.format_flow(f, True, True) + class uPathCompleter(libpry.AutoTree): @@ -147,11 +156,17 @@ class uPathCompleter(libpry.AutoTree): assert c.final == s +class uOptions(libpry.AutoTree): + def test_all(self): + assert console.Options(beep=True) + + tests = [ uformat_keyvals(), uformat_flow(), uState(), - uPathCompleter() + uPathCompleter(), + uOptions() ] -- cgit v1.2.3