kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.5 KiB
78 lines
2.5 KiB
12 years ago
|
require File.expand_path('../../../spec_helper', __FILE__)
|
||
|
|
||
|
describe Timelines::Reporting do
|
||
|
describe '- Relations ' do
|
||
|
describe '#project' do
|
||
|
it 'can read the project w/ the help of the belongs_to association' do
|
||
|
project = FactoryGirl.create(:project)
|
||
|
reporting = FactoryGirl.create(:timelines_reporting,
|
||
|
:project_id => project.id)
|
||
|
|
||
|
reporting.reload
|
||
|
|
||
|
reporting.project.should == project
|
||
|
end
|
||
|
|
||
|
it 'can read the reporting_to_project w/ the help of the belongs_to association' do
|
||
|
project = FactoryGirl.create(:project)
|
||
|
reporting = FactoryGirl.create(:timelines_reporting,
|
||
|
:reporting_to_project_id => project.id)
|
||
|
|
||
|
reporting.reload
|
||
|
|
||
|
reporting.reporting_to_project.should == project
|
||
|
end
|
||
|
|
||
|
it 'can read the reported_project_status w/ the help of the belongs_to association' do
|
||
|
reported_project_status = FactoryGirl.create(:timelines_reported_project_status)
|
||
|
reporting = FactoryGirl.create(:timelines_reporting,
|
||
|
:reported_project_status_id => reported_project_status.id)
|
||
|
|
||
|
reporting.reload
|
||
|
|
||
|
reporting.reported_project_status.should == reported_project_status
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe '- Validations ' do
|
||
|
let(:attributes) {
|
||
|
{:project_id => 1,
|
||
|
:reporting_to_project_id => 2}
|
||
|
}
|
||
|
|
||
|
before {
|
||
|
FactoryGirl.create(:project, :id => 1)
|
||
|
FactoryGirl.create(:project, :id => 2)
|
||
|
}
|
||
|
|
||
|
it { Timelines::Reporting.new.tap { |r| r.send(:assign_attributes, attributes, :without_protection => true) }.should be_valid }
|
||
|
|
||
|
describe 'project' do
|
||
|
it 'is invalid w/o a project' do
|
||
|
attributes[:project_id] = nil
|
||
|
reporting = Timelines::Reporting.new
|
||
|
reporting.send(:assign_attributes, attributes, :without_protection => true)
|
||
|
|
||
|
reporting.should_not be_valid
|
||
|
|
||
|
reporting.errors[:project].should be_present
|
||
|
reporting.errors[:project].should == ["can't be blank"]
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe 'reporting_to_project' do
|
||
|
it 'is invalid w/o a reporting_to_project' do
|
||
|
attributes[:reporting_to_project_id] = nil
|
||
|
reporting = Timelines::Reporting.new
|
||
|
reporting.send(:assign_attributes, attributes, :without_protection => true)
|
||
|
|
||
|
reporting.should_not be_valid
|
||
|
|
||
|
reporting.errors[:reporting_to_project].should be_present
|
||
|
reporting.errors[:reporting_to_project].should == ["can't be blank"]
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|