def test_should_respond_to_any_options(self): server.on('OPTIONS').status(200) res = requests.options('http://localhost:8080/some/url', headers={'foo': 'bar'}) self.assertEqual(res.status_code, 200)