2012-10-09 04:14:17 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: snippets
|
|
|
|
#
|
2012-11-19 13:24:05 -05:00
|
|
|
# id :integer not null, primary key
|
2012-10-09 04:14:17 -04:00
|
|
|
# title :string(255)
|
2013-08-21 05:34:02 -04:00
|
|
|
# content :text(2147483647)
|
2012-11-19 13:24:05 -05:00
|
|
|
# author_id :integer not null
|
2013-06-19 08:40:33 -04:00
|
|
|
# project_id :integer
|
2013-08-21 05:34:02 -04:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2012-10-09 04:14:17 -04:00
|
|
|
# file_name :string(255)
|
|
|
|
# expires_at :datetime
|
2013-06-19 08:40:33 -04:00
|
|
|
# private :boolean default(TRUE), not null
|
|
|
|
# type :string(255)
|
2012-10-09 04:14:17 -04:00
|
|
|
#
|
|
|
|
|
2011-10-16 17:07:10 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Snippet do
|
|
|
|
describe "Associations" do
|
2012-08-29 11:36:02 -04:00
|
|
|
it { should belong_to(:author).class_name('User') }
|
|
|
|
it { should have_many(:notes).dependent(:destroy) }
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|
|
|
|
|
2012-09-26 14:17:17 -04:00
|
|
|
describe "Mass assignment" do
|
|
|
|
it { should_not allow_mass_assignment_of(:author_id) }
|
|
|
|
end
|
|
|
|
|
2011-10-16 17:07:10 -04:00
|
|
|
describe "Validation" do
|
2012-10-08 20:10:16 -04:00
|
|
|
it { should validate_presence_of(:author) }
|
2012-08-29 11:36:02 -04:00
|
|
|
|
|
|
|
it { should validate_presence_of(:title) }
|
|
|
|
it { should ensure_length_of(:title).is_within(0..255) }
|
|
|
|
|
2011-10-16 17:07:10 -04:00
|
|
|
it { should validate_presence_of(:file_name) }
|
2012-08-29 11:36:02 -04:00
|
|
|
it { should ensure_length_of(:title).is_within(0..255) }
|
|
|
|
|
2011-10-16 17:07:10 -04:00
|
|
|
it { should validate_presence_of(:content) }
|
|
|
|
end
|
|
|
|
end
|