support QueueNamePrefix in the SQS Backend
This commit is contained in:
parent
6e1196386f
commit
470ade25eb
4 changed files with 31 additions and 3 deletions
|
|
@ -16,6 +16,10 @@ def test_sqs_list_identities():
|
|||
res.data.should.contain("ListQueuesResponse")
|
||||
|
||||
res = test_client.put('/?Action=CreateQueue&QueueName=testqueue')
|
||||
res = test_client.put('/?Action=CreateQueue&QueueName=otherqueue')
|
||||
|
||||
res = test_client.get('/?Action=ListQueues&QueueNamePrefix=other')
|
||||
res.data.should_not.contain('testqueue')
|
||||
|
||||
res = test_client.put(
|
||||
'/123/testqueue?MessageBody=test-message&Action=SendMessage')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue