diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-15 08:27:38 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-15 08:27:38 +0000 |
commit | aec989707edc47161192eba74f1a88123b12360a (patch) | |
tree | 5a810a6a3fb4fb76b9cfdb439eedc666bf4d049a /test/unit/tracker_test.rb | |
parent | 993b60d61eb927cff21ea0b06c1631eb986f6a51 (diff) | |
download | redmine-aec989707edc47161192eba74f1a88123b12360a.tar.gz redmine-aec989707edc47161192eba74f1a88123b12360a.zip |
Workflow copy:
* added the ability the copy an existing workflow when creating a new role (closes #841)
* use a single raw insert statement to copy tracker/role workflow rather than instantiating hundreds/thousands of objects
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1252 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/tracker_test.rb')
-rw-r--r-- | test/unit/tracker_test.rb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/test/unit/tracker_test.rb b/test/unit/tracker_test.rb new file mode 100644 index 000000000..7adacef3c --- /dev/null +++ b/test/unit/tracker_test.rb @@ -0,0 +1,33 @@ +# redMine - project management software +# Copyright (C) 2006-2008 Jean-Philippe Lang +# +# 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. + +require File.dirname(__FILE__) + '/../test_helper' + +class TrackerTest < Test::Unit::TestCase + fixtures :trackers, :workflows + + def test_copy_workflows + source = Tracker.find(1) + assert_equal 90, source.workflows.size + + target = Tracker.new(:name => 'Target') + assert target.save + assert target.workflows.copy(source) + target.reload + assert_equal 90, target.workflows.size + end +end |