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

32 lines
774 B
Ruby
Raw Normal View History

2011-10-16 17:07:10 -04:00
require 'spec_helper'
describe Snippet do
describe "Associations" do
it { should belong_to(:project) }
it { should belong_to(:author) }
end
describe "Validation" do
it { should validate_presence_of(:title) }
it { should validate_presence_of(:author_id) }
it { should validate_presence_of(:project_id) }
it { should validate_presence_of(:file_name) }
it { should validate_presence_of(:content) }
end
end
2011-10-17 11:31:21 -04:00
# == Schema Information
#
# Table name: snippets
#
# id :integer not null, primary key
# title :string(255)
# content :text
# author_id :integer not null
# project_id :integer not null
# created_at :datetime
# updated_at :datetime
# file_name :string(255)
2011-10-27 15:25:50 -04:00
# expires_at :datetime
2011-10-17 11:31:21 -04:00
#