0

Railsアプリでfactorygirlによって生成されたユーザーを使用しようとしています。目標は、彼にログインして編集ページを確認することですが、機能していません。私が得ているのは

<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
4

1 に答える 1

1

変数をブロックuser内で直接使用することはできません。、、、またはブロック(または他のいくつか)describeitで使用します。この場合、あなたはそれがブロックの中にあることを意図したと思います。letbeforesubjectbefore

これを回します:

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 "page" do
  before do
    visit signin_path
    fill_in "Email",    with: user.email
    fill_in "Password", with: user.password
    click_button "Sign in"           
    visit edit_user_path(user)
  end

  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
于 2012-12-21T05:15:53.523 に答える