1
manish@ubuntu:~/change/artfacedev2_15july$ bundle exec cucumber features/home_page.feature 
Using the default profile...
Rack::File headers parameter replaces cache_control after Rack 1.5.
Checking for old unconfirmed users
2013-07-23 19:29:38 +0530
Updating CurrencyValue
2013-07-23 19:29:38 +0530
Feature: homepage

  Background: I am on the homepage # features/home_page.feature:3
    Given I am on the homepage     # features/step_definitions/home_page_steps.rb:1
      Called id for nil, which would mistakenly be 4 -- if you really wanted the id of nil, use object_id (RuntimeError)
      ./app/controllers/static_controller.rb:31:in `home'
      ./features/step_definitions/home_page_steps.rb:2:in `/^I am on the homepage$/'
      features/home_page.feature:4:in `Given I am on the homepage'
"Exception"
"undefined method `update_attribute' for nil:NilClass"

..........................
in home_page.feature
Feature: homepage 

  Background: I am on the homepage
  Given I am on the homepage
..........................
in home_page_step.rb
Given /^I am on the homepage$/ do
  visit "/"
end
...........................
path.rb is 
module NavigationHelpers
  def path_to(page_name)
    case page_name
    when /the homepage/
      '/'
    when /users section in backend panel/
      '/backend/users/'
    when /backend login page/
      '/backend/af_login/'
    else
      raise "Can't find mapping from \"#{page_name}\" to a path.\n"
    end
  end
end
World(NavigationHelpers)
4

1 回答 1

0

static_controller.rb 的第 31 行调用id了您希望是ActiveRecord对象但实际上是nil. 找出原因。

(错误消息指出nil,不是ActiveRecord对象,只有 Ruby 内部id字段,始终4nil)。

于 2013-07-23T14:10:29.837 回答