moto/tests/test_ec2/test_ec2_core.py
Steve Pulec d32059f301 pep8
2013-02-26 00:31:01 -05:00

9 lines
235 B
Python

import requests
from moto import mock_ec2
@mock_ec2
def test_not_implemented_method():
requests.post.when.called_with("https://ec2.us-east-1.amazonaws.com/",
data={'Action': ['foobar']}).should.throw(NotImplementedError)