Sha256: 7799054dc1e1e7ed9495230b0c041b1e5d67c21f1e866d3bfd6bf003cee3f6bd

Contents?: true

Size: 1.31 KB

Versions: 6

Compression:

Stored size: 1.31 KB

Contents

require File.dirname(__FILE__) + '/../../test_helper'

class ActionViewHelperTest < Test::Unit::TestCase
  include ActiveMerchant::Billing::Integrations::ActionViewHelper
  include ActionView::Helpers::FormHelper
  include ActionView::Helpers::FormTagHelper
  include ActionView::Helpers::UrlHelper
  include ActionView::Helpers::TagHelper
  include ActionView::Helpers::TextHelper
  
  attr_accessor :output_buffer
  
  def setup
    @controller = Class.new do
      attr_reader :url_for_options
      def url_for(options, *parameters_for_method_reference)
        @url_for_options = options
      end      
    end
    @controller = @controller.new
    @output_buffer = ''
  end

  
  def test_basic_payment_service
    _erbout = ''

    payment_service_for('order-1','test', :service => :bogus){}

    expected = [
      '<form action="http://www.bogus.com" method="post">',
      '<input id="order" name="order" type="hidden" value="order-1" />',
      '<input id="account" name="account" type="hidden" value="test" />',
      "</form>"
    ]
   
    _erbout.each_line do |line|
      assert expected.include?(line.chomp), "Failed to match #{line}"
    end
  end
  
  def test_payment_service_no_block_given
    assert_raise(ArgumentError){ payment_service_for }
  end
  
  protected
  def protect_against_forgery?
    false
  end
end

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
martinstannard-activemerchant-0.1.0 test/unit/integrations/action_view_helper_test.rb
seamusabshere-active_merchant-1.4.2.1 test/unit/integrations/action_view_helper_test.rb
seamusabshere-active_merchant-1.4.2.3 test/unit/integrations/action_view_helper_test.rb
activemerchant-1.4.1 test/unit/integrations/action_view_helper_test.rb
activemerchant-1.4.0 test/unit/integrations/action_view_helper_test.rb
activemerchant-1.4.2 test/unit/integrations/action_view_helper_test.rb