顺便说一下,使用 Rails 3.1.1。要重现这一点,请创建一个新的 Rails 项目。在此项目中创建一个名为 Example 的新模型。为此模型创建一个迁移,如下所示...
class CreateExamples < ActiveRecord::Migration
def change
create_table :examples do |t|
t.integer :status, :null => false
t.timestamps
end
end
end
让示例模型代码如下所示...
class Example < ActiveRecord::Base
VALID_VALUES = [0, 1, 2, 3]
validates :status, :presence => true, :inclusion => {:in => VALID_VALUES}
end
现在编辑此模型的单元测试并将以下代码添加到其中...
require 'test_helper'
class ExampleTest < ActiveSupport::TestCase
test "whats going on here" do
example = Example.new(:status => "string")
assert !example.save
end
end
编辑夹具文件,使其不创建任何记录,然后使用诸如 bundle exec rake test:units 之类的命令运行单元测试。此测试应通过,因为“字符串”不是有效状态,因此示例对象应从调用保存返回 false。这没有发生。如果您将 0 从 VALID_VALUES 数组中取出,则此方法有效。有人知道为什么会这样吗?