我是 ruby on rails 的新手,我正试图在 ruby on rails 上测试我的控制器。 它以前工作过,但现在我不知道发生了什么,但是当我做测试时,我收到了下一条错误消息:
/Library/Ruby/Gems/1.8/gems/rspec-core-2.10.1/lib/rspec/core/configuration.rb:746:in `load': no such file to load -- /Users/armandodejesussantoyareales/Documents/project_newbie/Estaciones/estaciones/spec/controllers/user_controller_spec.rb (LoadError)
这是我的spec文件:
require 'spec_helper'
describe UserController do
it "create new user" do
get :create, :user => { :email => 'foo@example.com', :name => 'userexample' }
flash[:notice] = 'new user was successfully created.'
end
describe "signup" do
before { visit signup_path }
let(:submit) { "Create my account" }
describe "with invalid information" do
it "should not create a user" do
expect { click_button submit }.not_to change(User, :count)
end
end
describe "with valid information" do
before do
fill_in "Name", with: "Example User"
fill_in "Email", with: "user@example.com"
fill_in "Password", with: "foobar"
fill_in "Confirmation", with: "foobar"
end
it "should create a user" do
expect { click_button submit }.to change(User, :count).by(1)
end
end
end
end
这是我的Usercontroller
class UserController < ApplicationController
def new
@user = User.new
end
def create
@user = User.new(params[:user])
if @user.save
redirect_to user_session_path
else
redirect_to new_user_session_path
end
def show
@user = User.find(params[:id])
#redirect_to @user
end
end
答案 0 :(得分:0)
/Users/armandodejesussantoyareales/Documents/project_newbie/Estaciones/estaciones/spec/controllers/user_controller_spec.rb
你确定这是正确的道路吗?在终端中,键入时会发生什么:
ls /Users/armandodejesussantoyareales/Documents/project_newbie/Estaciones/estaciones/spec/controllers/user_controller_spec.rb
如果收到错误No such file or directory
,则该路径不存在。如果只是回到路径上,那就没关系了。
或者,您可以手动查找此文件并验证路径。但无论哪种方式,我猜您只是错误地输入了spec文件的路径。