Sha256: 533d0eb2bb19a4e1609e329bccbab8234e8b430a271d8fd311483cc07318d78d

Contents?: true

Size: 792 Bytes

Versions: 6

Compression:

Stored size: 792 Bytes

Contents

require 'spec_helper'

describe Mailroute::ResellerContact, :vcr => true do
  before { configure_mailroute }

  let(:reseller) { Mailroute::Reseller.get(4) }

  describe 'CRUD' do
    it 'should create, read, update and delete reseller contacts' do
      contact = Mailroute::ResellerContact.create(:email => 'haskell@example.com', :reseller => reseller)

      contact.id.should be

      contact2 = Mailroute::ResellerContact.get(contact.id)

      contact2.should == contact

      contact2.city = 'Minsk'
      contact2.save!

      contact2.reseller.should == reseller

      contact.reload.city.should == 'Minsk'

      contact.delete

      expect { contact2.reload }.to raise_error ActiveResource::ResourceNotFound

      reseller.contacts.should_not include contact
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mailroute-0.0.6 spec/lib/mailroute/models/reseller_contact_spec.rb
mailroute-0.0.5 spec/lib/mailroute/models/reseller_contact_spec.rb
mailroute-0.0.4 spec/lib/mailroute/models/reseller_contact_spec.rb
mailroute-0.0.3 spec/lib/mailroute/models/reseller_contact_spec.rb
mailroute-0.0.2 spec/lib/mailroute/models/reseller_contact_spec.rb
mailroute-0.0.1 spec/lib/mailroute/models/reseller_contact_spec.rb