32 lines
1.2 KiB
Ruby
32 lines
1.2 KiB
Ruby
When(/^the user (?:tries to |)creates? an invoice (?:for|without) "(.*?)" (?:or |and |)"(.*?)"$/) do |price, currency|
|
|
begin
|
|
@response = @client.create_invoice(price: price, currency: currency, facade: 'merchant')
|
|
rescue => error
|
|
@error = error
|
|
end
|
|
end
|
|
|
|
Then(/^they should recieve an invoice in response for "(.*?)" "(.*?)"$/) do |price, currency|
|
|
raise "#{@response['price']} != #{price} or #{@response['currency']} != #{currency}" unless (price == @response['price'].to_s && currency == @response['currency'])
|
|
end
|
|
|
|
Given(/^there is an invalid token$/) do
|
|
pending # express the regexp above with the code you wish you had
|
|
end
|
|
|
|
Given(/^that a user knows an invoice id$/) do
|
|
@client = new_client_from_stored_values
|
|
@id = (@client.create_invoice(price: 3, currency: "USD", facade: 'merchant' ))['id']
|
|
end
|
|
|
|
Then(/^they can retrieve the public version of that invoice$/) do
|
|
invoice = @client.get_public_invoice(id: @id)
|
|
raise "That's the wrong invoice" unless invoice['id'] == @id
|
|
end
|
|
|
|
Then(/^they can retrieve the merchant\-scoped version of that invoice$/) do
|
|
invoice = @client.get_invoice(id: @id)
|
|
raise "That's the wrong invoice" unless invoice['id'] == @id
|
|
end
|
|
|