(self)
| 211 | self.assertFalse(is_json_value_header(shape)) |
| 212 | |
| 213 | def test_json_value_header(self): |
| 214 | shape = mock.Mock() |
| 215 | shape.serialization = {'jsonvalue': True, 'location': 'header'} |
| 216 | shape.type_name = 'string' |
| 217 | self.assertTrue(is_json_value_header(shape)) |
| 218 | |
| 219 | |
| 220 | class TestURINormalization(unittest.TestCase): |
nothing calls this directly
no test coverage detected