私は私のテストからこのエラーを理解していません
Failure/Error: get "new"
ActionController::RoutingError:
No route matches {:action=>"new", :controller=>"user"}
私のルートファイル
Station::Application.routes.draw do
devise_for :users, :controllers => { :new => "new" }
これが私のテストです
require 'spec_helper'
describe UserController do
it "should registrer new user" do
get "new"
fill_in "Email", :with => "abc@example.com"
fill_in "Password", :with => "abc123"
click_button "Sign up"
response.should have_content("Welcome! You have registrered successfully.")
end
end