【发布时间】:2016-03-13 21:15:25
【问题描述】:
我正在尝试设置 Rspec 和 Shoulda-Matchers,但由于某种原因我收到此错误:
无方法错误: #RSpec::ExampleGroups::AdCampaign::Validations:0x000000062a2b90>
的未定义方法“validate_presence_of”失败/错误:它 { 应该有_many :advertisements } 预计 # 会回复
has_many?无方法错误: #RSpec::ExampleGroups::AdCampaign::Associations:0x0000000686d8e0>
的未定义方法“belong_to”
似乎我尝试了 stackoverflow 和 github 问题的所有答案,但没有任何帮助。
也许你可以帮我找出我做错了什么?
这是我的rails_helper.rb:
ENV['RAILS_ENV'] ||= 'test'
require File.expand_path('../../config/environment', __FILE__)
abort("The Rails environment is running in production mode!") if Rails.env.production?
require 'rspec/rails'
require 'shoulda/matchers'
require 'spec_helper'
ActiveRecord::Migration.maintain_test_schema!
RSpec.configure do |config|
config.fixture_path = "#{::Rails.root}/spec/fixtures"
config.use_transactional_fixtures = true
config.infer_spec_type_from_file_location!
config.filter_rails_from_backtrace!
end
Shoulda::Matchers.configure do |config|
config.integrate do |with|
with.test_framework :rspec
with.library :rails
end
end
这是我的spec_helper.rb:
ENV['RAILS_ENV'] ||= 'test'
require File.expand_path('../../config/environment', __FILE__)
require 'rspec/rails'
require 'shoulda/matchers'
require 'database_cleaner'
require 'capybara/rspec'
Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
ActiveRecord::Migration.check_pending! if defined?(ActiveRecord::Migration)
RSpec.configure do |config|
config.include Rails.application.routes.url_helpers
config.include FactoryGirl::Syntax::Methods
config.include(Shoulda::Matchers::ActiveModel, type: :model)
config.include(Shoulda::Matchers::ActiveRecord, type: :model)
# config.include Shoulda::Matchers::ActiveRecord, type: :model
# config.include Devise::TestHelpers, type: :controller
config.order = 'random'
config.before(:suite) do
DatabaseCleaner.strategy = :transaction
DatabaseCleaner.clean_with(:truncation)
end
config.before(:each) do
DatabaseCleaner.start
end
config.after(:each) do
DatabaseCleaner.clean
end
config.expect_with :rspec do |expectations|
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
end
config.mock_with :rspec do |mocks|
mocks.verify_partial_doubles = true
end
end
下面是我测试的规范文件:
require 'rails_helper'
RSpec.describe AdCampaign, type: :model do
describe 'validations' do
it { should validate_presence_of :shop }
it { should validate_presence_of :description }
end
describe 'associations' do
it { should belong_to :shop }
it { should have_many :advertisements }
it { should have_one :recipient_list }
end
end
这是我要测试的模型:
class AdCampaign < ActiveRecord::Base
belongs_to :shop
has_many :advertisements
has_one :recipient_list
validates :shop, :description, presence: true
end
我尝试将Shoulda::Matchers.configure do... 放在rails_helper.rb 和spec_helper.rb 中。
在我的 gem 文件中,我有这样的 shoulda-matchers gem:
group :development, :test do
gem 'shoulda-matchers', require: false
end
您能帮我设置一下 shoulda-matchers 和 rspec 吗?我在这里做错了什么?
【问题讨论】:
-
您是否尝试过将 shoulda-matchers 从
:development组中移除? -
@HoangPhan 是的,没有帮助,同样的错误。有什么想法吗?
-
你有哪个rails和ruby有这个问题?
-
@HoangPhan 这是控制台的输出:
$ ruby -v ===> ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-linux]$ rails -v ===> Rails 4.2.5 -
奇怪,我输入的东西和你的环境完全相同,它可以工作。该错误看起来像您尚未安装 gem,也许您可以再次尝试
bundle或bundle update?
标签: ruby-on-rails rspec guard shoulda