提交 2c8a4a53 编写于 作者: T Tore Darell 提交者: José Valim

Remove or fix non-working examples and add a few tests to Dirty [#5185 state:resolved]

Signed-off-by: NJosé Valim <jose.valim@gmail.com>
上级 fb2b8fec
......@@ -37,12 +37,13 @@ module ActiveModel
# end
#
# def name=(val)
# name_will_change!
# name_will_change! unless val == @name
# @name = val
# end
#
# def save
# @previously_changed = changes
# @changed_attributes.clear
# end
#
# end
......@@ -77,12 +78,6 @@ module ActiveModel
# person.changed # => ['name']
# person.changes # => { 'name' => ['Bill', 'Bob'] }
#
# Resetting an attribute returns it to its original state:
# person.reset_name! # => 'Bill'
# person.changed? # => false
# person.name_changed? # => false
# person.name # => 'Bill'
#
# If an attribute is modified in-place then make use of <tt>[attribute_name]_will_change!</tt>
# to mark that the attribute is changing. Otherwise ActiveModel can't track changes to
# in-place attributes.
......
......@@ -3,10 +3,11 @@
class DirtyTest < ActiveModel::TestCase
class DirtyModel
include ActiveModel::Dirty
define_attribute_methods [:name]
define_attribute_methods [:name, :color]
def initialize
@name = nil
@color = nil
end
def name
......@@ -17,13 +18,92 @@ def name=(val)
name_will_change!
@name = val
end
def color
@color
end
def color=(val)
color_will_change! unless val == @color
@color = val
end
def save
@previously_changed = changes
@changed_attributes.clear
end
end
setup do
@model = DirtyModel.new
end
test "setting attribute will result in change" do
assert !@model.changed?
assert !@model.name_changed?
@model.name = "Ringo"
assert @model.changed?
assert @model.name_changed?
end
test "list of changed attributes" do
assert_equal [], @model.changed
@model.name = "Paul"
assert_equal ['name'], @model.changed
end
test "changes to attribute values" do
assert !@model.changes['name']
@model.name = "John"
assert_equal [nil, "John"], @model.changes['name']
end
test "changes accessible through both strings and symbols" do
model = DirtyModel.new
model.name = "David"
assert_not_nil model.changes[:name]
assert_not_nil model.changes['name']
@model.name = "David"
assert_not_nil @model.changes[:name]
assert_not_nil @model.changes['name']
end
test "attribute mutation" do
@model.instance_variable_set("@name", "Yam")
assert !@model.name_changed?
@model.name.replace("Hadad")
assert !@model.name_changed?
@model.name_will_change!
@model.name.replace("Baal")
assert @model.name_changed?
end
test "resetting attribute" do
@model.name = "Bob"
@model.reset_name!
assert_nil @model.name
#assert !@model.name_changed #Doesn't work yet
end
test "setting color to same value should not result in change being recorded" do
@model.color = "red"
assert @model.color_changed?
@model.save
assert !@model.color_changed?
assert !@model.changed?
@model.color = "red"
assert !@model.color_changed?
assert !@model.changed?
end
test "saving should reset model's changed status" do
@model.name = "Alf"
assert @model.changed?
@model.save
assert !@model.changed?
assert !@model.name_changed?
end
test "saving should preserve previous changes" do
@model.name = "Jericho Cane"
@model.save
assert_equal [nil, "Jericho Cane"], @model.previous_changes['name']
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册