Sha256: ae1422f7394e74ee8f26cb9c3b1cfb56cfeafbaa0f807fd27241bf8d6528f077

Contents?: true

Size: 1.28 KB

Versions: 3

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              => "BRL",
        :description           => "Awesome - Monthly Subscription",
        :ipn_url               => "http://example.com/paypal/ipn",
        :frequency             => 1,
        :token                 => "EC-47J551124P900104V",
        :period                => :monthly,
        :reference             => "1234",
        :payer_id              => "D2U7M6PTMJBML",
        :start_at              => Time.now,
        :failed                => 1,
        :outstanding           => :next_billing
      })
      ppr.create_recurring_profile
    }

    it { should be_valid }

    its(:profile_id) { should == "I-W4FNTE6EXJ2W" }
    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

3 entries across 3 versions & 2 rubygems

Version Path
didil-paypal-recurring-1.1.1 spec/paypal/response/create_recurring_profile_spec.rb
paypal-recurring-1.1.0 spec/paypal/response/create_recurring_profile_spec.rb
paypal-recurring-1.0.0 spec/paypal/response/create_recurring_profile_spec.rb