LoginSignup
0
0

More than 1 year has passed since last update.

rspec: 予約語を含むカラムの値をfactory_botで設定するには

Posted at

add_attribute をつかえ!
以上。

self なんてカラム定義するなよぉ・・・

NG

factory :books do
  title { "title" }
  self { "my self" }
end

OK

factory :books do
  title { "title" }
  add_attribute(:self) { "my self" }
end

Reference

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0