Sha256: 72933a548a76df4ec04d32c56e206fc1e2ceeee04243fbaec5e6b5acbd949dcf
Contents?: true
Size: 1.24 KB
Versions: 8
Compression:
Stored size: 1.24 KB
Contents
require 'rails_helper' describe Checkin do fixtures :all before(:each) do @basket = Basket.new @basket.user = users(:librarian1) @basket.save end it "should save checkout history if save_checkout_history is true" do user = users(:user1) checkouts_count = user.checkouts.count checkin = Checkin.new checkin.item = user.checkouts.not_returned.first.item checkin.basket = @basket #checkin.item_identifier = checkin.item.item_identifier checkin.save! checkin.item_checkin(user) user.checkouts.count.should eq checkouts_count end it "should not save checkout history if save_checkout_history is false" do user = users(:librarian1) checkouts_count = user.checkouts.count checkin = Checkin.new checkin.item = user.checkouts.not_returned.first.item checkin.basket = @basket checkin.save! checkin.item_checkin(user) user.checkouts.count.should eq checkouts_count - 1 end end # == Schema Information # # Table name: checkins # # id :integer not null, primary key # item_id :integer not null # librarian_id :integer # basket_id :integer # created_at :datetime # updated_at :datetime # lock_version :integer default(0), not null #
Version data entries
8 entries across 8 versions & 1 rubygems