diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-10-13 08:14:53 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-10-13 08:14:53 +0000 |
commit | a88782bdeca52c1d1b9844d46bf01a829108d187 (patch) | |
tree | f99c99f17f25f83663544a58f032e88edc5807fe /test | |
parent | 31ee1d22eb89c6b4debac8307e84022a7dd23bc5 (diff) | |
download | redmine-a88782bdeca52c1d1b9844d46bf01a829108d187.tar.gz redmine-a88782bdeca52c1d1b9844d46bf01a829108d187.zip |
Tests cleanup.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10627 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/issues_controller_test.rb | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index b897c472e..958f82cb0 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -419,10 +419,7 @@ class IssuesControllerTest < ActionController::TestCase str_utf8.force_encoding('UTF-8') str_big5.force_encoding('Big5') end - issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 3, - :status_id => 1, :priority => IssuePriority.all.first, - :subject => str_utf8) - assert issue.save + issue = Issue.generate!(:subject => str_utf8) get :index, :project_id => 1, :f => ['subject'], @@ -445,10 +442,7 @@ class IssuesControllerTest < ActionController::TestCase if str_utf8.respond_to?(:force_encoding) str_utf8.force_encoding('UTF-8') end - issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 3, - :status_id => 1, :priority => IssuePriority.all.first, - :subject => str_utf8) - assert issue.save + issue = Issue.generate!(:subject => str_utf8) get :index, :project_id => 1, :f => ['subject'], @@ -479,11 +473,7 @@ class IssuesControllerTest < ActionController::TestCase def test_index_csv_tw with_settings :default_language => "zh-TW" do str1 = "test_index_csv_tw" - issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 3, - :status_id => 1, :priority => IssuePriority.all.first, - :subject => str1, :estimated_hours => '1234.5') - assert issue.save - assert_equal 1234.5, issue.estimated_hours + issue = Issue.generate!(:subject => str1, :estimated_hours => '1234.5') get :index, :project_id => 1, :f => ['subject'], @@ -508,11 +498,7 @@ class IssuesControllerTest < ActionController::TestCase def test_index_csv_fr with_settings :default_language => "fr" do str1 = "test_index_csv_fr" - issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 3, - :status_id => 1, :priority => IssuePriority.all.first, - :subject => str1, :estimated_hours => '1234.5') - assert issue.save - assert_equal 1234.5, issue.estimated_hours + issue = Issue.generate!(:subject => str1, :estimated_hours => '1234.5') get :index, :project_id => 1, :f => ['subject'], |