Rails4: replace deprecated Relation#first with finder options at IssuesControllerTransactionTest

git-svn-id: http://svn.redmine.org/redmine/trunk@12638 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-01-11 10:12:49 +00:00
parent 1bb79568e5
commit 190bb9af30

View File

@ -102,7 +102,7 @@ class IssuesControllerTransactionTest < ActionController::TestCase
assert_response :success assert_response :success
assert_template 'edit' assert_template 'edit'
attachment = Attachment.first(:order => 'id DESC') attachment = Attachment.order('id DESC').first
assert_tag 'input', :attributes => {:name => 'attachments[p0][token]', :value => attachment.token} assert_tag 'input', :attributes => {:name => 'attachments[p0][token]', :value => attachment.token}
assert_tag 'input', :attributes => {:name => 'attachments[p0][filename]', :value => 'testfile.txt'} assert_tag 'input', :attributes => {:name => 'attachments[p0][filename]', :value => 'testfile.txt'}
end end
@ -189,7 +189,7 @@ class IssuesControllerTransactionTest < ActionController::TestCase
assert_response 302 assert_response 302
issue = Issue.find(1) issue = Issue.find(1)
assert_equal 4, issue.fixed_version_id assert_equal 4, issue.fixed_version_id
journal = Journal.first(:order => 'id DESC') journal = Journal.order('id DESC').first
assert_equal 'overwrite_conflict_resolution', journal.notes assert_equal 'overwrite_conflict_resolution', journal.notes
assert journal.details.any? assert journal.details.any?
end end
@ -210,7 +210,7 @@ class IssuesControllerTransactionTest < ActionController::TestCase
assert_response 302 assert_response 302
issue = Issue.find(1) issue = Issue.find(1)
assert_nil issue.fixed_version_id assert_nil issue.fixed_version_id
journal = Journal.first(:order => 'id DESC') journal = Journal.order('id DESC').first
assert_equal 'add_notes_conflict_resolution', journal.notes assert_equal 'add_notes_conflict_resolution', journal.notes
assert journal.details.empty? assert journal.details.empty?
end end