Sha256: 4126ef0801f28dfbea9924e862634caa995c0a2b37d48d9c06d1200ae415be1b
Contents?: true
Size: 1.53 KB
Versions: 2
Compression:
Stored size: 1.53 KB
Contents
require 'spec_helper' module Opay describe Helpers::PayuHelper, type: :helper do context 'form tag' do before do @order = Order.create! name: 'first order', amount: 1000 # 10 zł end it 'creates form tag' do html = helper.payu_form_for(@order) do |f| f.payment_info first_name: 'Jan', last_name: 'Kowalski', email: 'kowalski@gmail.com', desc: 'Test payment', client_ip: '127.0.0.1' end html.should have_css('form[action="https://www.platnosci.pl/paygw/UTF/NewPayment"]') html.should have_css('form[method="post"]') html.should have_css('input[name="first_name"]') html.should have_css('input[name="last_name"]') html.should have_css('input[name="email"]') html.should have_css('input[name="pos_id"]') html.should have_css('input[name="pos_auth_key"]') html.should have_css('input[name="session_id"]') html.should have_css('input[name="amount"]') html.should have_css('input[name="desc"]') html.should have_css('input[name="client_ip"]') html.should have_css('input[name="js"]') end it 'works in test mode' do Opay.config.test_mode = true Opay.config.test_mode.should be true html = helper.payu_form_for(@order) do |f| f.payment_info first_name: 'Jan', last_name: 'Kowalski', email: 'kowalski@gmail.com', desc: 'Test payment', client_ip: '127.0.0.1' end html.should have_css('input[name="pay_type"][value="t"]') end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
opay-1.0.1 | spec/lib/opay/helpers/payu_helper_spec.rb |
opay-1.0.0 | spec/lib/opay/helpers/payu_helper_spec.rb |