実現したいこと
ポートフォリオを作成中です。
会員登録の画面にて、正しくない情報を送信した場合は登録画面に戻る、という
テストを正しく動作させたい。
発生している問題・エラーメッセージ
Failures: 1) ユーザー管理機能 ユーザー登録機能 誤った情報が入力された場合 登録画面が表示される Failure/Error: expect(current_path).to eq new_user_path expected: "/users/new" got: "/users" (compared using ==) [Screenshot]: tmp/screenshots/failures_r_spec_example_groups_nested_nested_nested_2_登録画面が表示される_857.png # ./spec/system/user_spec.rb:36:in `block (4 levels) in <top (required)>' Finished in 2.54 seconds (files took 1.07 seconds to load) 2 examples, 1 failure Failed examples: rspec ./spec/system/user_spec.rb:35 # ユーザー管理機能 ユーザー登録機能 誤った情報が入力された場合 登録画面が表示される
該当のソースコード
specfile
1# coding: utf-8 2 3require "rails_helper" 4require "byebug" 5 6RSpec.describe "ユーザー管理機能", type: :system do 7 describe "ユーザー登録機能" do 8 before do 9 visit new_user_path 10 end 11 context "誤った情報が入力された場合" do 12 before do 13 fill_in "ハンドルネーム", with: "" 14 fill_in "メールアドレス", with: "" 15 fill_in "パスワード", with: "" 16 fill_in "パスワード(確認用)", with: "" 17 click_button "登録する" 18 end 19 it "登録画面が表示される" do 20 expect(current_path).to eq new_user_path 21 expect(page).to have_css "#error_explanation" 22 end 23 end 24 end 25end 26
controller
1class UsersController < ApplicationController 2 3 def new 4 @user = User.new 5 end 6 7 def create 8 @user = User.new(user_params) 9 if @user.save 10 redirect_to root_url, flash: { success: "会員登録が完了しました" } 11 else 12 render "users/new" 13 end 14 end 15 16 private 17 18 def user_params 19 params.require(:user).permit(:name, :email, :password, :password_confirmation) 20 end 21end
routing
1users GET /users(.:format) users#index 2 POST /users(.:format) users#create 3new_user GET /users/new(.:format) users#new
試したこと
当初はrender_templateを試してみましたが、
Relishをみるとシステムスペックでは使えないとのこと。
本テストはリクエストスペックでまるごと表現するしかないのでしょうか。
あなたの回答
tips
プレビュー