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.
81 lines
2.9 KiB
81 lines
2.9 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2015 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.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# 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.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
#-- encoding: UTF-8
|
|
require File.join(File.dirname(__FILE__), 'test_helper')
|
|
|
|
class OptionsTest < Test::Unit::TestCase
|
|
context 'Configuration options' do
|
|
setup do
|
|
@options = { dependent: :destroy }
|
|
@configuration = { class_name: 'MyCustomVersion' }
|
|
|
|
VestalVersions::Configuration.options.clear
|
|
@configuration.each { |k, v| VestalVersions::Configuration.send("#{k}=", v) }
|
|
|
|
@prepared_options = User.prepare_journaled_options(@options.dup)
|
|
end
|
|
|
|
should 'have symbolized keys' do
|
|
assert User.vestal_journals_options.keys.all? { |k| k.is_a?(Symbol) }
|
|
end
|
|
|
|
should 'combine class-level and global configuration options' do
|
|
combined_keys = (@options.keys + @configuration.keys).map(&:to_sym).uniq
|
|
combined_options = @configuration.symbolize_keys.merge(@options.symbolize_keys)
|
|
assert_equal @prepared_options.slice(*combined_keys), combined_options
|
|
end
|
|
|
|
teardown do
|
|
VestalVersions::Configuration.options.clear
|
|
User.prepare_journaled_options({})
|
|
end
|
|
end
|
|
|
|
context 'Given no options, configuration options' do
|
|
setup do
|
|
@prepared_options = User.prepare_journaled_options({})
|
|
end
|
|
|
|
should 'default to "VestalVersions::Version" for :class_name' do
|
|
assert_equal 'VestalVersions::Version', @prepared_options[:class_name]
|
|
end
|
|
|
|
should 'default to :delete_all for :dependent' do
|
|
assert_equal :delete_all, @prepared_options[:dependent]
|
|
end
|
|
|
|
should 'force the :as option value to :journaled' do
|
|
assert_equal :journaled, @prepared_options[:as]
|
|
end
|
|
|
|
should 'default to [VestalVersions::Versions] for :extend' do
|
|
assert_equal [VestalVersions::Versions], @prepared_options[:extend]
|
|
end
|
|
end
|
|
end
|
|
|