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.
68 lines
2.2 KiB
68 lines
2.2 KiB
11 years ago
|
#-- copyright
|
||
|
# OpenProject Costs Plugin
|
||
|
#
|
||
|
# Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF)
|
||
|
#
|
||
|
# This program is free software; you can redistribute it and/or
|
||
|
# modify it under the terms of the GNU General Public License
|
||
|
# version 3.
|
||
|
#
|
||
|
# This program is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with this program; if not, write to the Free Software
|
||
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
#++
|
||
|
|
||
13 years ago
|
require File.dirname(__FILE__) + '/../spec_helper'
|
||
|
|
||
9 years ago
|
describe VariableCostObject, type: :model do
|
||
7 years ago
|
let(:cost_object) { FactoryBot.build(:variable_cost_object) }
|
||
|
let(:type) { FactoryBot.create(:type_feature) }
|
||
|
let(:project) { FactoryBot.create(:project_with_types) }
|
||
|
let(:user) { FactoryBot.create(:user) }
|
||
13 years ago
|
|
||
13 years ago
|
describe 'recreate initial journal' do
|
||
|
before do
|
||
11 years ago
|
allow(User).to receive(:current).and_return(user)
|
||
13 years ago
|
|
||
7 years ago
|
@variable_cost_object = FactoryBot.create(:variable_cost_object, project: project,
|
||
9 years ago
|
author: user)
|
||
13 years ago
|
|
||
|
@initial_journal = @variable_cost_object.journals.first
|
||
|
@recreated_journal = @variable_cost_object.recreate_initial_journal!
|
||
|
end
|
||
|
|
||
11 years ago
|
it { expect(@initial_journal).to be_identical(@recreated_journal) }
|
||
13 years ago
|
end
|
||
|
|
||
9 years ago
|
describe 'initialization' do
|
||
13 years ago
|
let(:cost_object) { VariableCostObject.new }
|
||
|
|
||
|
before do
|
||
11 years ago
|
allow(User).to receive(:current).and_return(user)
|
||
13 years ago
|
end
|
||
|
|
||
11 years ago
|
it { expect(cost_object.author).to eq(user) }
|
||
13 years ago
|
end
|
||
|
|
||
9 years ago
|
describe 'destroy' do
|
||
7 years ago
|
let(:work_package) { FactoryBot.create(:work_package) }
|
||
13 years ago
|
|
||
|
before do
|
||
|
cost_object.author = user
|
||
11 years ago
|
cost_object.work_packages = [work_package]
|
||
13 years ago
|
cost_object.save!
|
||
13 years ago
|
|
||
13 years ago
|
cost_object.destroy
|
||
|
end
|
||
13 years ago
|
|
||
11 years ago
|
it { expect(VariableCostObject.find_by_id(cost_object.id)).to be_nil }
|
||
|
it { expect(WorkPackage.find_by_id(work_package.id)).to eq(work_package) }
|
||
|
it { expect(work_package.reload.cost_object).to be_nil }
|
||
13 years ago
|
end
|
||
|
end
|