0
我想創建一個與belongs_to
關聯類的關聯測試。ActiveRecord :: Fixture :: FixtureError:表「職位」沒有列名爲「用戶」 - 其中'職位'belongs_to'用戶'
當燈具正在創建時,測試失敗 - Rails未檢測到Posts
中的belongs_to :user
關聯。
它似乎通過了常規的rake test
命令,但不是當單個文件在guard
內運行時。
測試低於:
module Post
class AssociationsTest < ActiveSupport::TestCase
subject { Post.new }
should belong_to(:user)
end
end