test/fixtures/fixture.rb in mymoip-0.7.0 vs test/fixtures/fixture.rb in mymoip-0.8.0

- old
+ new

@@ -61,9 +61,13 @@ instruction_line_1: 'Line 1', instruction_line_2: 'Line 2', instruction_line_3: 'Line 3', logo_url: 'http://www.myurl.com/logo.png' }.merge(params) - MyMoip::PaymentSlip.new(params) + end + + def self.bank_debit(params = {}) + params = { bank: :itau }.merge(params) + MyMoip::BankDebit.new(params) end end