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.
88 lines
2.7 KiB
88 lines
2.7 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
#
|
|
# Copyright (C) 2012-2013 the OpenProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
require File.expand_path('../../spec_helper', __FILE__)
|
|
|
|
describe 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(: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(: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(:reported_project_status)
|
|
reporting = FactoryGirl.create(: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 { 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 = 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 = 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
|
|
|