0

私のアプリケーションは、ユーザー認証用のデバイスを備えた動作中のRails 3に基づいています。このエラーが発生しました。このエラーはどのように解決できますか?

bin/cucumber features/signing_up.feature
Rack::File headers parameter replaces cache_control after Rack 1.5.
Using the default profile...
Feature: Signing up
  In order to be attributed for my work
  As a user
  I want to be able to sign up

  Scenario: Signing up                                                 # features/signing_up.feature:6
    Given I am on the homepage                                         # features/step_definitions/web_steps.rb:44
    When I follow "Sign up"                                            # features/step_definitions/web_steps.rb:56
      Ambiguous match, found 2 elements matching link "Sign up" (Capybara::Ambiguous)
      ./features/step_definitions/web_steps.rb:57:in `/^(?:|I )follow "([^"]*)"$/'
      features/signing_up.feature:8:in `When I follow "Sign up"'
    And I fill in "Email" with "user@ticketee.com"                     # features/step_definitions/web_steps.rb:60
    And I fill in "Password" with "password"                           # features/step_definitions/web_steps.rb:60
    And I fill in "Password confirmation" with "password"              # features/step_definitions/web_steps.rb:60
    And I press "Sign up"                                              # features/step_definitions/web_steps.rb:52
    Then I should see "You have signed up successfully."               # features/step_definitions/web_steps.rb:105
    Then I should see "Please confirm your account before signing in." # features/step_definitions/web_steps.rb:105

Failing Scenarios:
cucumber features/signing_up.feature:6 # Scenario: Signing up

1 scenario (1 failed)
8 steps (1 failed, 6 skipped, 1 passed)
0m0.272s

ステップ定義:57

When /^(?:|I )follow "([^"]*)"$/ do |link|
  click_link(link)
end

ルート.rb

Ticketee::Application.routes.draw do

  devise_for :users, :controllers => { :registrations => "registrations" }
  get '/awaiting_confirmation', :to => "users#confirmation", :as => 'confirm_user'

  resources :projects do
    resources :tickets
  end
  root :to => "projects#index"

  namespace :admin do
    root :to => "base#index"
    resources :users
  end

それは本から取得したroutes.rbであり、本の中でテストは合格していますが、私と一緒に合格していません

4

1 に答える 1