mirror of
https://github.com/redmine/redmine.git
synced 2026-03-05 03:51:38 +01:00
Rails4: replace deprecated Relation#update_all at RepositoryTest
git-svn-id: http://svn.redmine.org/redmine/trunk@12557 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -136,14 +136,12 @@ class RepositoryTest < ActiveSupport::TestCase
|
||||
end
|
||||
|
||||
def test_identifier_should_not_be_frozen_for_a_saved_repository_with_blank_identifier
|
||||
Repository.update_all(["identifier = ''"], "id = 10")
|
||||
|
||||
Repository.where(:id => 10).update_all(["identifier = ''"])
|
||||
assert_equal false, Repository.find(10).identifier_frozen?
|
||||
end
|
||||
|
||||
def test_identifier_should_be_frozen_for_a_saved_repository_with_valid_identifier
|
||||
Repository.update_all(["identifier = 'abc123'"], "id = 10")
|
||||
|
||||
Repository.where(:id => 10).update_all(["identifier = 'abc123'"])
|
||||
assert_equal true, Repository.find(10).identifier_frozen?
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user