My tests work great when I test them separately,
rake cucumber FEATURE = 'path/to/feature'
but when i try to run
rake cucumber
They do not work with the following error
undefined method `password_confirmation=' for #<User:0x1069545f0> (NoMethodError)
This happens when I try to create a user using Factory.build (: user). I have a factories file that defines the user :.
I really don’t know how to confirm this, but it doesn’t seem to have authlogic, and the user model does not yet have methods added. When I look at the User methods (User.new.methods.include? ("Password_confirmation =")) while Factory is trying to create a new user, there is a method defined by this name.
, , , - , .
EDIT:
- :
-------.feature
Background:
Given user "Bad Admin" with email address "badmin@gmail.com" and password "password" exists with "admin" credentials
Given user "Good Admin" with email address "goodadmin@gmail.com" and password "password" exists with "edit" credentials
Scenario: valid log in with authorization
When I go to the login page
Scenario: invalid login
When I go to the login page
---- factories.rb
Factory.define :user do |u|
u.first_name "Arthur"
u.last_name "Dent"
u.email { Factory.next(:user_email) }
u.password "default"
u.password_confirmation "default"
end
---- steps.rb
Given /^user "([^"]*)" with email "([^"]*)", password "([^"]*)" and credentials "([^"]*)" exists$/ do |name, email, password, role|
names = name.split(' ')
user = Factory(:user, :first_name => names.first, :last_name => names.last, :email => email, :password => password, :password_confirmation => password)
user.has_role! role.downcase.gsub(' ', '_')
end