測試設計使用水豚登錄。這似乎是錯誤的,因爲我無法使用rspec和水豚測試登錄。使用im工廠女孩來定義用戶Rspec capybara用戶不能登錄
FactoryGirl.define do
factory :user do
email '[email protected]'
password 'bhaktapur'
password_confirmation 'bhaktapur'
admin true
name 'admin'
confirmation_sent_at "#{DateTime.now}"
confirmation_token 'anupsumhikichiki'
confirmed_at "#{DateTime.now}"
username 'username'
end
end
這裏是我的spec_helper.rb
# This file is copied to spec/ when you run 'rails generate rspec:install'
ENV["RAILS_ENV"] ||= 'test'
require File.expand_path("../../config/environment", __FILE__)
require 'rspec/rails'
require 'rspec/autorun'
require 'capybara/rspec'
require 'database_cleaner'
# FactoryGirl.find_definitions
Capybara.current_driver = :selenium
# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/support/ and its subdirectories.
Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
RSpec.configure do |config|
config.include Devise::TestHelpers, :type => :controller
config.before(:suite) do
DatabaseCleaner.strategy = :transaction
DatabaseCleaner.clean_with :truncation
end
config.before(:each) do
DatabaseCleaner.start
end
# config.after(:each) { }
config.after(:each) do
DatabaseCleaner.clean
Warden.test_reset!
end
config.fixture_path = "#{::Rails.root}/spec/fixtures"
config.use_transactional_fixtures = false
# If true, the base class of anonymous controllers will be inferred
# automatically. This will be the default behavior in future versions of
# rspec-rails.
config.infer_base_class_for_anonymous_controllers = false
end
這裏是我的規格
require_relative '../spec_helper.rb'
include Warden::Test::Helpers
Warden.test_mode!
feature "the signin process" do
before :each do
@user_attr = FactoryGirl.attributes_for(:user)
# @user = FactoryGirl (:user)
User.create!(@user_attr)
end
scenario "signs me in" do
# login_as @user, :scope => :user
visit '/'
fill_in 'Login', :with => "[email protected]"
fill_in 'Password', :with => "bhaktapur"
click_button 'Sign in'
page.should have_content "Signed in successfully"
Warden.test_reset!
end
end
而且我的用戶模型設置爲可確定
內我終於在這裏找到http://stackoverflow.com/questions/6576592/failing-to-test-devise-with-capybara答案 – xecutioner
我找到了解決方案使用 http://stackoverflow.com/questions/6576592/failing-to-test-devise-with-capybara – xecutioner