#245: added specs for ProjectStatistic model

This commit is contained in:
Vokhmin Alexey V 2013-07-31 18:01:10 +04:00
parent b5e22bb5db
commit 74fdd772d6
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,7 @@
# -*- encoding : utf-8 -*-
FactoryGirl.define do
factory :project_statistic do
association :project, :factory => :project
association :arch, :factory => :arch
end
end

View File

@ -0,0 +1,24 @@
require 'spec_helper'
describe ProjectStatistic do
context 'ensures that validations and associations exist' do
it { should belong_to(:project) }
it { should belong_to(:arch) }
it { should validate_presence_of(:project_id) }
it { should validate_presence_of(:arch_id) }
it { should validate_presence_of(:average_build_time) }
it { should validate_presence_of(:build_count) }
it { should_not allow_mass_assignment_of(:project_id) }
it { should_not allow_mass_assignment_of(:arch_id) }
it 'uniqueness of project_id and arch_id' do
FactoryGirl.create(:project_statistic)
should validate_uniqueness_of(:project_id).scoped_to(:arch_id)
end
end
end