gitlabhq/spec/models/users_project_spec.rb

23 lines
546 B
Ruby
Raw Normal View History

2011-10-08 23:36:38 +02:00
require 'spec_helper'
describe UsersProject do
describe "Associations" do
it { should belong_to(:project) }
it { should belong_to(:user) }
end
describe "Validation" do
let!(:users_project) { create(:users_project) }
2011-10-08 23:36:38 +02:00
it { should validate_presence_of(:user_id) }
it { should validate_uniqueness_of(:user_id).scoped_to(:project_id) }
2011-10-08 23:36:38 +02:00
it { should validate_presence_of(:project_id) }
end
describe "Delegate methods" do
2011-10-08 23:36:38 +02:00
it { should respond_to(:user_name) }
it { should respond_to(:user_email) }
end
end