エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
RSpec エラー 解決 undefined method `feature' for RSpec:Module - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
RSpec エラー 解決 undefined method `feature' for RSpec:Module - Qiita
rspecコマンドを打った時に出たエラー。 結論 capybaraを読み込んでいなかった。 コード エラーコード r... rspecコマンドを打った時に出たエラー。 結論 capybaraを読み込んでいなかった。 コード エラーコード require 'rails_helper' RSpec.feature "Users", type: :feature do describe "Signup page" do before do visit signup_path end it "display Signup contents, title properly" do expect(page).to have_css('h1', text: 'ユーザー登録') expect(page).to have_title 'Signup hoge' end end end require 'rails_helper' + require 'capybara/rspec' RSpec.feature "Users",