Sha256: 39ae583a00b6de86abac207a382eea87f330c0c743825c84572cdbf82749bef1
Contents?: true
Size: 1.35 KB
Versions: 6
Compression:
Stored size: 1.35 KB
Contents
# -*- encoding: utf-8 -*- require 'rails_helper' describe Library do fixtures :all before(:each) do @library = FactoryGirl.create(:library) end it "should should create default shelf" do @library.shelves.first.should be_truthy @library.shelves.first.name.should eq "#{@library.name}_default" end end # == Schema Information # # Table name: libraries # # id :integer not null, primary key # name :string not null # display_name :text # short_display_name :string not null # zip_code :string # street :text # locality :text # region :text # telephone_number_1 :string # telephone_number_2 :string # fax_number :string # note :text # call_number_rows :integer default(1), not null # call_number_delimiter :string default("|"), not null # library_group_id :integer not null # users_count :integer default(0), not null # position :integer # country_id :integer # created_at :datetime # updated_at :datetime # deleted_at :datetime # opening_hour :text # isil :string # latitude :float # longitude :float #
Version data entries
6 entries across 4 versions & 2 rubygems