0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

deviseでCould not find a valid mapping for エラー

Posted at

rspecを実行していると以下のエラーが発生するようになった。

Failure/Error: user = FactoryGirl.create(:user)
RuntimeError:
   Could not find a valid mapping for #<User _id: 51eb486fe138233d1b0001cd, email: 〜

原因/対処方法

キャッシュを無効にしていたことが原因っぽい。
ただ、キャッシュを無効にしないとModelがリロードされないことがあるので、キャッシュを無効にしていたのですが・・・。

enviroments/test.rb
config.cache_classes = false

一先ず、キャッシュを有効にしたら治りました。
(根本解決にはなっておりませんが・・)

enviroments/test.rb
config.cache_classes = true
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?