-3

私はこのコードを持っています: https://github.com/roelof1967/tamara しかし、キュウリを実行すると、このエラーメッセージで失敗します: https://gist.github.com/4008123

誰かが私のコードの何が問題なのか説明できますか?

ロエロフ

編集 1: 失敗するコード:

class Output  
def messages    
   @messages ||= []  
end    
def puts(message)    
    messages << message  
end    
def output    
   @output ||= Output.new  
end
end

When /^he logs in$/ do   
   visit("/users/sign_in")  
   fill_in('Email', :with => @user.email)  
   fill_in('Password', :with => @user.password)  
   click_button('Sign in')
end

Then /^he should see "(.*?)"$/ do |message|  
  @output.messages.should include (message)
end

エラーメッセージは次のとおりです。

undefined method `[]' for nil:NilClass NoMethodError)      
./features/step_definitions/login_steps.rb:6:in `/^he logs in$/'          
features/login.feature:5:in `When he logs in'
4

1 に答える 1

0

ソリューションに対してこれを行います。

ステップ 1 : ホーム コントローラーを作成する

class HomeController < ApplicationController
  def index
  end
end

ステップ2homeフォルダーviewを作成してindex.html.erbファイルを作成すると、コンテンツは例のようになります

<% if current_user.present? %>
  <h1> <%= link_to "Sign Out", destroy_user_session_path, :method => :delete %> </h1>
<% else %>
  <h1> <%= link_to "Sign Up", "/users/sign_up" %> |<%= link_to "Sign In", user_session_path %> </h1>
<% end %> 

ステップ3login.featureファイルは次のようになります

Feature: login and authecation

Scenario: log in as existing user
  Given a user "roelof" exists
  When he logs in
  Then he should see "Signed in successfully."
  And he should see "Sign Out"

Scenario: log in with bad password
  Given a user "Aslak" exists
  When he logs in with a bad password
  Then he should not see "Welcome, Aslak"
  And he should see "Login failed"

ステップ 4今、実行しますcucumber

シナリオ「既存のユーザーとしてログイン」は成功します。

于 2012-11-06T11:26:50.137 に答える