Sha256: a66472ffc1ed86f8a1828f405829b8fda2959abcd3332a908a7c6e6fc39e12cb
Contents?: true
Size: 652 Bytes
Versions: 15
Compression:
Stored size: 652 Bytes
Contents
# -*- encoding: utf-8 -*- require 'spec_helper' describe ImportRequest do fixtures :all context "import" do it "should import bibliographic record", :vcr => true do old_count = Manifestation.count import_request = ImportRequest.create(:isbn => '9784797350999') import_request.import! Manifestation.count.should eq old_count + 1 end end end # == Schema Information # # Table name: import_requests # # id :integer not null, primary key # isbn :string(255) # manifestation_id :integer # user_id :integer # created_at :datetime # updated_at :datetime #
Version data entries
15 entries across 15 versions & 1 rubygems