Event & Wiki models specs

This commit is contained in:
Dmitriy Zaporozhets 2012-03-28 22:53:45 +03:00
parent ef32e01b4c
commit 8ee0993fdf
4 changed files with 78 additions and 2 deletions

31
spec/models/wiki_spec.rb Normal file
View file

@ -0,0 +1,31 @@
require 'spec_helper'
describe Wiki do
describe "Associations" do
it { should belong_to(:project) }
it { should belong_to(:user) }
end
describe "Validation" do
it { should validate_presence_of(:title) }
it { should validate_presence_of(:content) }
it { should validate_presence_of(:user_id) }
end
it { Factory(:wiki).should be_valid }
end
# == 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)
# expires_at :datetime
#