gitlab-org--gitlab-foss/spec/models/snippet_spec.rb

42 lines
1.1 KiB
Ruby
Raw Normal View History

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