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.
62 lines
2.0 KiB
62 lines
2.0 KiB
5 years ago
|
#-- copyright
|
||
5 years ago
|
# OpenProject is an open source project management software.
|
||
|
# Copyright (C) 2012-2020 the OpenProject GmbH
|
||
5 years ago
|
#
|
||
5 years ago
|
# This program is free software; you can redistribute it and/or
|
||
|
# modify it under the terms of the GNU General Public License version 3.
|
||
|
#
|
||
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
||
|
# Copyright (C) 2006-2017 Jean-Philippe Lang
|
||
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
||
5 years ago
|
#
|
||
|
# This program is free software; you can redistribute it and/or
|
||
|
# modify it under the terms of the GNU General Public License
|
||
5 years ago
|
# as published by the Free Software Foundation; either version 2
|
||
|
# of the License, or (at your option) any later version.
|
||
5 years ago
|
#
|
||
|
# 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.
|
||
5 years ago
|
#
|
||
|
# See docs/COPYRIGHT.rdoc for more details.
|
||
5 years ago
|
#++
|
||
|
|
||
|
require 'spec_helper'
|
||
|
|
||
|
describe ::OpenProject::Bcf::BcfXml::Exporter do
|
||
|
let(:query) { FactoryBot.build(:global_query)}
|
||
|
let(:work_package) { FactoryBot.create :work_package }
|
||
|
let(:admin) { FactoryBot.create(:admin) }
|
||
|
let(:current_user) { admin }
|
||
|
|
||
|
before do
|
||
|
work_package
|
||
|
allow(User).to receive(:current).and_return current_user
|
||
|
end
|
||
|
|
||
|
subject { described_class.new(query) }
|
||
|
|
||
|
context "one WP without BCF issue associated" do
|
||
|
it '#work_packages' do
|
||
|
expect(subject.work_packages.count).to eql(0)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context "one WP with BCF issue associated" do
|
||
|
let(:bcf_issue) { FactoryBot.create(:bcf_issue_with_comment, work_package: work_package) }
|
||
|
|
||
|
before do
|
||
|
bcf_issue
|
||
|
end
|
||
|
|
||
|
it '#work_packages' do
|
||
|
expect(subject.work_packages.count).to eql(1)
|
||
|
end
|
||
|
end
|
||
|
end
|