Sha256: 6142ad3660d052c36f72e13803e8ec2c49659310fe06ee063b4124277bd165fd

Contents?: true

Size: 1.28 KB

Versions: 5

Compression:

Stored size: 1.28 KB

Contents

require "spec_helper"

describe PayPal::Recurring::Response::Profile do
  context "when successful" do
    use_vcr_cassette "create_profile/success"

    subject {
      ppr = PayPal::Recurring.new({
        :amount                => "9.00",
        :initial_amount        => "9.00",
        :initial_amount_action => :cancel,
        :currency              => "USD",
        :description           => "Awesome - Monthly Subscription",
        :ipn_url               => "http://example.com/paypal/ipn",
        :frequency             => 1,
        :token                 => "EC-2UK36172XH723314S",
        :period                => :monthly,
        :reference             => "1234",
        :payer_id              => "WTTS5KC2T46YU",
        :start_at              => Time.now,
        :failed                => 1,
        :outstanding           => :next_billing
      })
      ppr.create_recurring_profile
    }

    it { should be_valid }

    its(:profile_id) { should == "I-89LD5VEHEVK4" }
    its(:status) { should == "ActiveProfile" }
    its(:errors) { should be_empty }
  end

  context "when failure" do
    use_vcr_cassette("create_profile/failure")
    subject { PayPal::Recurring.new.create_recurring_profile }

    it { should_not be_valid }
    its(:errors) { should have(5).items }
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
paypal-recurring-0.1.6 spec/paypal/response/create_recurring_profile_spec.rb
paypal-recurring-0.1.5 spec/paypal/response/create_recurring_profile_spec.rb
paypal-recurring-0.1.4 spec/paypal/response/create_recurring_profile_spec.rb
paypal-recurring-0.1.3 spec/paypal/response/create_recurring_profile_spec.rb
paypal-recurring-0.1.2 spec/paypal/response/create_recurring_profile_spec.rb