aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_gsxws.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_gsxws.py')
-rw-r--r--tests/test_gsxws.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_gsxws.py b/tests/test_gsxws.py
index 868a853..e59c1ff 100644
--- a/tests/test_gsxws.py
+++ b/tests/test_gsxws.py
@@ -41,6 +41,11 @@ class TestErrorFunctions(TestCase):
def test_message(self):
self.assertRegexpMatches(self.data.message, 'Multiple error messages exist.')
+ def test_exception(self):
+ msg = 'Connection failed'
+ e = GsxError(msg)
+ self.assertEqual(e.message, msg)
+
class TestLookupFunctions(RemoteTestCase):
def test_component_check(self):