(self)
| 38 | assert ContextAPI.get_current_context().Name == "default" |
| 39 | |
| 40 | def test_https_host(self): |
| 41 | c = Context("test", host="tcp://testdomain:8080", tls=True) |
| 42 | assert c.Host == "https://testdomain:8080" |
| 43 | |
| 44 | def test_context_inspect_without_params(self): |
| 45 | ctx = ContextAPI.inspect_context() |