我正在尝试在我的rails应用程序中使用工厂女孩生成的用户。目标是让他登录并检查他的编辑页面,但它不起作用。我得到的是
<top (required)>': undefined local variable or method `user' for #<Class:0x000001034caaa0> (NameError)
这是被执行的代码
describe "edit" do
let(:user) { FactoryGirl.create(:user) }
describe "page" do
# signin method in utilities
before { visit signin_path }
fill_in "Email", with: user.email
fill_in "Password", with: user.password
click_button "Sign in"
# end signin method in utilities
before { visit edit_user_path(user) }
it { should have_selector('h1', text: "Update your profile") }
it { should have_selector('title', text: "Edit user") }
it { should have_link('change', href: 'htttp://gravatar.com/emails') }
end
describe "with invalid information" do
before { visit edit_user_path(user) }
before { click_button "Save changes"}
it { should have_content('error') }
end
describe "with valid information" do
before { visit edit_user_path(user) }
let(:new_name) { "New Name" }
let(:new_email) { "new@example.com" }
before do
fill_in "Name", with: new_name
fill_in "Email", with: new_email
fill_in "Password", with: user.password
fill_in "Confirm Password", with: user.password
click_button "Save changes"
end
it { should have_selector('title', text: new_name) }
it { should have_link('Sign out', href: signout_path) }
it { should have_selector('div.alert.alert-success') }
specify { user.reload.name.should == new_name }
specify { user.reload.email.should == new_email }
end
end