diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-05-19 01:05:53 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-05-19 01:05:53 +0000 |
commit | bbca694881b9e4580542478780b534c373d20336 (patch) | |
tree | ba599cf4fe84ed0f6f1bb274f8c6f77021d8e63a /test/unit/version_test.rb | |
parent | 160f6cd361cc5fd7fb4398a9a387f4f33a37e180 (diff) | |
download | redmine-bbca694881b9e4580542478780b534c373d20336.tar.gz redmine-bbca694881b9e4580542478780b534c373d20336.zip |
remove empty setup method from VersionTest
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11880 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/version_test.rb')
-rw-r--r-- | test/unit/version_test.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/unit/version_test.rb b/test/unit/version_test.rb index 6f74eac36..a9e647398 100644 --- a/test/unit/version_test.rb +++ b/test/unit/version_test.rb @@ -20,9 +20,6 @@ require File.expand_path('../../test_helper', __FILE__) class VersionTest < ActiveSupport::TestCase fixtures :projects, :users, :issues, :issue_statuses, :trackers, :enumerations, :versions, :projects_trackers - def setup - end - def test_create v = Version.new(:project => Project.find(1), :name => '1.1', :effective_date => '2011-03-25') assert v.save |