Sha256: 212b3c35d01e1f6330a0dbd802131b065ff241dc8f61341a2a09a6bff412c714

Contents?: true

Size: 311 Bytes

Versions: 6

Compression:

Stored size: 311 Bytes

Contents

require 'spec_helper'

describe PaymentApplication do

  before(:all) do
    @payment_application = PaymentApplication.create()
  end

  it "should have to check to see if it is pending" do
    @payment_application.is_pending?.should eq false
  end

  after(:all) do
    @payment_application.destroy
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
erp_invoicing-3.0.6 spec/models/payment_application_spec.rb
erp_invoicing-3.0.5 spec/models/payment_application_spec.rb
erp_invoicing-3.0.4 spec/models/payment_application_spec.rb
erp_invoicing-3.0.3 spec/models/payment_application_spec.rb
erp_invoicing-3.0.2 spec/models/payment_application_spec.rb
erp_invoicing-3.0.1 spec/models/payment_application_spec.rb