Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def test_repr_method(self):
foo = apiron.StreamingEndpoint(path="/bar/baz")
assert repr(foo) == "StreamingEndpoint(path='/bar/baz')"
def test_str_method(self):
foo = apiron.StreamingEndpoint(path="/bar/baz")
assert str(foo) == "/bar/baz"
def test_format_response(self):
foo = apiron.StreamingEndpoint()
mock_response = mock.Mock()
assert mock_response.iter_content(chunk_size=None) == foo.format_response(mock_response)