2011-10-08 17:36:38 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Key do
|
|
|
|
describe "Associations" do
|
2011-12-31 12:37:51 -05:00
|
|
|
it { should belong_to(:user) or belong_to(:project) }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Validation" do
|
|
|
|
it { should validate_presence_of(:title) }
|
|
|
|
it { should validate_presence_of(:key) }
|
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
describe "Methods" do
|
2011-10-08 17:36:38 -04:00
|
|
|
it { should respond_to :projects }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { Factory.create(:key,
|
|
|
|
:user => Factory(:user)).should be_valid }
|
|
|
|
end
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: keys
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer not null
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# key :text
|
|
|
|
# title :string(255)
|
|
|
|
# identifier :string(255)
|
|
|
|
#
|
|
|
|
|