[Rails]Rspecでのエラー
解決したいこと
このコマンドを入力してもcontrollerファイルが作成できない。
$docker compose run web rails g rspec:controller コントローラー名
発生している問題・エラー
この警告はmodelのテストを行う際にも書かれている。modelはテストを行いパスすることもできます。
warning: Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call
The called method `initialize' is defined here
自分で試したこと
- dockerコマンドなしで行ったところ同じエラー
- gemがtestにしか入ってなかったので入れ直したが変わらない。
どなたかご教授ください。
0