RSpec/トラブルシューティング
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(RSpec/トラブルシューティング);
*目次 [#t119f39d]
#contents
*関連ページ [#g2596805]
-[[RSpec]]
*参考情報 [#m4b3dbbe]
*トラブルシューティング [#ob7d9adf]
** 「ActiveModel::MissingAttributeError: can't write unkn...
-carriewave + factorygirlの環境で実行していたのでどちらか...
-test用db定義が古いのが原因。以下で更新できる。[[WARNING:...
rake db:test:clone
-spec_helper.rbで以下が定義されていれば自動でメンテナンス...
ActiveRecord::Migration.maintain_test_schema!
**spec実行時に「`require': cannot load such file -- spec_...
-spec_helperを作ってないのかもしれない。以下のコマンドを...
rails generate rspec:install
**spec実行時に「cannot load such file -- rails_helper」 [...
-spec_helperじゃなくてrails_helperがないとだめになった。...
rails generate rspec:install
**describeでエラー発生「syntax error, unexpected keyword_...
-describeの書き方が変わったらしい。[[Myron Marston »...
--以前:
describe Simple, :type => :model ,'説明分' do
--以後:
describe '説明分', :type => :model do
終了行:
&tag(RSpec/トラブルシューティング);
*目次 [#t119f39d]
#contents
*関連ページ [#g2596805]
-[[RSpec]]
*参考情報 [#m4b3dbbe]
*トラブルシューティング [#ob7d9adf]
** 「ActiveModel::MissingAttributeError: can't write unkn...
-carriewave + factorygirlの環境で実行していたのでどちらか...
-test用db定義が古いのが原因。以下で更新できる。[[WARNING:...
rake db:test:clone
-spec_helper.rbで以下が定義されていれば自動でメンテナンス...
ActiveRecord::Migration.maintain_test_schema!
**spec実行時に「`require': cannot load such file -- spec_...
-spec_helperを作ってないのかもしれない。以下のコマンドを...
rails generate rspec:install
**spec実行時に「cannot load such file -- rails_helper」 [...
-spec_helperじゃなくてrails_helperがないとだめになった。...
rails generate rspec:install
**describeでエラー発生「syntax error, unexpected keyword_...
-describeの書き方が変わったらしい。[[Myron Marston »...
--以前:
describe Simple, :type => :model ,'説明分' do
--以後:
describe '説明分', :type => :model do
ページ名: