Sha256: 9ee29b0d339fcb9951bbd67831e94d4801dbfea21a9623faa85830635286df6a

Contents?: true

Size: 1.3 KB

Versions: 13

Compression:

Stored size: 1.3 KB

Contents

# -*- encoding: utf-8 -*-
require 'spec_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         not null
#  updated_at   :datetime         not null
#  lock_version :integer          default(0), not null
#

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
enju_circulation-0.1.0.pre40 spec/models/checkin_spec.rb
enju_circulation-0.1.0.pre39 spec/models/checkin_spec.rb
enju_circulation-0.1.0.pre38 spec/models/checkin_spec.rb
enju_circulation-0.1.0.pre37 spec/models/checkin_spec.rb
enju_circulation-0.1.0.pre36 spec/models/checkin_spec.rb
enju_circulation-0.1.0.pre35 spec/models/checkin_spec.rb
enju_circulation-0.1.0.pre34 spec/models/checkin_spec.rb
enju_circulation-0.1.0.pre33 spec/models/checkin_spec.rb
enju_circulation-0.1.0.pre32 spec/models/checkin_spec.rb
enju_circulation-0.1.0.pre31 spec/models/checkin_spec.rb
enju_circulation-0.1.0.pre30 spec/models/checkin_spec.rb
enju_circulation-0.1.0.pre29 spec/models/checkin_spec.rb
enju_circulation-0.1.0.pre28 spec/models/checkin_spec.rb