From 455c017edb6d3341af1a68e07840dfdfb4a85d20 Mon Sep 17 00:00:00 2001 From: Sebastian Lobinger <sebastian.lobinger@fu-berlin.de> Date: Wed, 7 Jun 2017 11:31:08 +0200 Subject: [PATCH] add check for missing token mandatory key in test_mandatory_keys_in_spec seems already implemented in sams_hub.py --- test/test_sams_proxy.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_sams_proxy.py b/test/test_sams_proxy.py index 107ed35..737620a 100644 --- a/test/test_sams_proxy.py +++ b/test/test_sams_proxy.py @@ -33,6 +33,8 @@ class TestSAMSHub(unittest.TestCase): , 'token': {'name': 'user'}}, {'in': '/foo/bar', 'out': 'http://baz.foo' , 'token': {'value': 'user'}}, + {'in': '/foo/bar', 'out': 'http://baz.foo' + , 'token': {'name': 'user', 'value': 'user'}}, {'in': '/foo/bar', 'out': 'http://baz.foo' , 'session-passthrough': {}}, {'in': '/foo/bar', 'out': 'http://baz.foo' -- GitLab