mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
some test renaming to avoid collisions, and some annoying issues between dbs
This commit is contained in:
parent
9f6cafd5fd
commit
78e581bd2f
1 changed files with 7 additions and 7 deletions
|
@ -492,7 +492,7 @@ class PersistencesTest < ActiveRecord::TestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_update_attributes_as_admin
|
def test_update_attributes_as_admin
|
||||||
person = TightPerson.create
|
person = TightPerson.create({ "first_name" => 'Joshua' })
|
||||||
person.update_attributes({ "first_name" => 'Josh', "gender" => 'm', "comments" => 'from NZ' }, :as => :admin)
|
person.update_attributes({ "first_name" => 'Josh', "gender" => 'm', "comments" => 'from NZ' }, :as => :admin)
|
||||||
person.reload
|
person.reload
|
||||||
|
|
||||||
|
@ -501,8 +501,8 @@ class PersistencesTest < ActiveRecord::TestCase
|
||||||
assert_equal 'from NZ', person.comments
|
assert_equal 'from NZ', person.comments
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_update_attributes_as_without_protection
|
def test_update_attributes_without_protection
|
||||||
person = TightPerson.create
|
person = TightPerson.create({ "first_name" => 'Joshua' })
|
||||||
person.update_attributes({ "first_name" => 'Josh', "gender" => 'm', "comments" => 'from NZ' }, :without_protection => true)
|
person.update_attributes({ "first_name" => 'Josh', "gender" => 'm', "comments" => 'from NZ' }, :without_protection => true)
|
||||||
person.reload
|
person.reload
|
||||||
|
|
||||||
|
@ -532,8 +532,8 @@ class PersistencesTest < ActiveRecord::TestCase
|
||||||
Reply.reset_callbacks(:validate)
|
Reply.reset_callbacks(:validate)
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_update_attributes_as_admin
|
def test_update_attributes_with_bang_as_admin
|
||||||
person = TightPerson.create
|
person = TightPerson.create({ "first_name" => 'Joshua' })
|
||||||
person.update_attributes!({ "first_name" => 'Josh', "gender" => 'm', "comments" => 'from NZ' }, :as => :admin)
|
person.update_attributes!({ "first_name" => 'Josh', "gender" => 'm', "comments" => 'from NZ' }, :as => :admin)
|
||||||
person.reload
|
person.reload
|
||||||
|
|
||||||
|
@ -542,8 +542,8 @@ class PersistencesTest < ActiveRecord::TestCase
|
||||||
assert_equal 'from NZ', person.comments
|
assert_equal 'from NZ', person.comments
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_update_attributes_as_without_protection
|
def test_update_attributestes_with_bang_without_protection
|
||||||
person = TightPerson.create
|
person = TightPerson.create({ "first_name" => 'Joshua' })
|
||||||
person.update_attributes!({ "first_name" => 'Josh', "gender" => 'm', "comments" => 'from NZ' }, :without_protection => true)
|
person.update_attributes!({ "first_name" => 'Josh', "gender" => 'm', "comments" => 'from NZ' }, :without_protection => true)
|
||||||
person.reload
|
person.reload
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue