-
Notifications
You must be signed in to change notification settings - Fork 63
Closed
Labels
Description
test:
When I make a POST request to /cards with the body:
"""
{
"number": "4111111111111111",
"expiration_month": 12,
"expiration_year": 2016,
"cvv": "901"
}
"""
Then I should get a 201 CREATED status code
And the response is valid according to the "cards" schema
And the fields on this card match:
"""
{
"cvv_match": "unsupported"
}
"""
result:
<"unsupported"> expected but was
<"yes">. (MiniTest::Assertion)
Is this just wrong fixture data?