- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个以枚举作为属性的模型。
class ApplicationLetter < ActiveRecord::Base
belongs_to :user
belongs_to :event
validates :user, :event, presence: true
enum status: {accepted: 1, rejected: 0, pending: 2}
end
以及生成此模型并为枚举设置值的工厂
FactoryGirl.define do
factory :application_letter do
motivation "motivation"
user
event
status :accepted
end
end
在 Controller 测试中我想通过工厂获得有效的属性
let(:valid_attributes) { FactoryGirl.build(:application_letter).attributes }
并创建具有这些属性的应用程序。
application = ApplicationLetter.create! valid_attributes
但是我得到以下错误:
ArgumentError: '1' is not a valid status
为什么状态被解释为字符串?如果我在工厂中更改状态,我会得到同样的错误,但对应的数字是正确的。
最佳答案
你可以更动态地做到这一点:
FactoryGirl.define do
factory :application_letter do
motivation "motivation"
user
event
status { ApplicationLetter.statuses.values.sample }
end
end
在这里面每次你都会得到不同的状态
或者,如果想使用静态值,则必须使用整数,因为 enum
默认使用整数值
关于ruby-on-rails - rails 4 : Set enum field through FactoryGirl attributes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40830247/
是否可以将一个关联用作特征中另一个关联的值? 让我描述一个(简化的)例子。我有 3 个模型 用户 论坛 (belongs_to :forum) 主题 (belongs_to :forum, belon
我正在尝试为我的 Image 对象的一些测试创建一些记录。但是,似乎它们并没有持续存在: describe Image do before(:all) do for i in 0.
我从事的项目结构如下: projects/warehouse/core projects/warehouse/products/bottles projects/warehouse/products/
我有两个相关模型——Customer,它有一个Address。这些是我的工厂: FactoryGirl.define do factory :customer do address e
我有一个使用 rspec 和 factorygirl 的 ruby 应用程序,但我在构建工厂时遇到了问题。当我运行规范时,我得到一个 ArgumentError: missing keywords
好的伙计们。这怎么说得通?两个嵌套的工厂(被 FactoryGirl 认为是继承)不应该相互冲突。到底他妈发生了什么?它要么不是继承,要么是。如果不是,我不知道为什么他们会称之为继承。我只是做错了什么
这可能很简单,但我在任何地方都找不到示例。 我有两个工厂: FactoryGirl.define do factory :profile do user title "direct
我在我的装置中使用 FactoryGirl,但我发现它并没有真正产生有用的验证错误。 我总是收到 activerecord.errors.models.messages.record_invalid
我有一个工厂,我在 factories/locations.rb 中定义了一个位置.我正在使用带有 ruby 1.9.3 的 Mongoid 和 Rails 3.1.1。 FactoryGirl.
我试图弄清楚如何编写属于 2 个不同模型的工厂,每个模型都应该具有相同的父模型。这是人为的示例代码: class User < ActiveRecord::Base has_many :widge
当我在开发中启动 Rails 控制台时,我看到 FactoryGirl 创建对象。显然我做错了,但是这样做的正确方法是什么?这段代码使我的测试工作...... # tests/factories/bo
我正在尝试与工厂女孩建立 has_many:has_many 关系。 这是我的模型: class User < ActiveRecord::Base has_many :user_roles
有没有办法拥有同一个工厂的多个版本?例如,user工厂。 FactoryGirl.define do factory :user#1 do name 'John Doe' date
您好,我正在使用带有 Rails 4.2.11 的 FactoryGirl 4.9.0。我向名为 Query 的模型添加了一个 bool 列,如下所示: class AddSetLatestResul
我在使用 FactoryGirl 时遇到问题,我正在使用序列来避免重复字段,但无论如何验证都失败了。 输出: 1) CustomersController anonymous user GET #
假设我有以下 ActiveRecord楷模: class Car belongs_to :driver end class Driver # Has attribute :name has
FactoryGirl 是否可以定义一个从 0 到 10 的随机数? factory :rating do ranking 1 #random number? re
我有一个标准的has_many关系(预订有很多订单),并确认没有至少一个订单不会保存预订。我正在尝试使用FactoryGirl工厂复制此文件,但是验证阻止我这样做。 class Booking < A
这些是2个简单的模型: class Post :destroy validates :asset, presence: true end class Asset post) end e
我有一个这样的代码模型工厂: Factory.define :code do |f| f.value "code" f.association :code_type f.ass
我是一名优秀的程序员,十分优秀!