Rspec неопределенный метод "ожидает" для объекта - PullRequest
0 голосов
/ 24 сентября 2018

Я недавно обновил свой проект ruby ​​on rails до rails 5.0.7 и ruby ​​2.5.1, и я получаю ошибку RSPEC undefined method ожидает 'для` различных объектов, которые я тестирую.

У меня естьпопытался добавить конфигурацию в файл spec_helper.rb, как предложено здесь (хотя я сделал быстрый поиск и не нашел нигде :should определенного), здесь и здесь:

config.expect_with :rspec do |expectations|
  expectations.syntax = [:expect, :expects]
end

Также пытался включить include RSpec::Matchers в мой spec_helper.rb, но затем я получаю еще больше ошибок:

`only the `receive`, `have_received` and `receive_messages` matchers are supported with `expect(...).to`, but you have provided: #<RSpec::Matchers::BuiltIn::Eq:0x00007f962b3db058>`

Пример того, как я использую ожидаемый:

describe "process" do
before :each do
  @item = Item.new
end

it "parses the uploaded file and extract the correct report data" do
  item_a_data = {"name" => "one"}
  item_b_data = {"name" => "two"}
  file_contents = {"items" => [item_a_data, item_b_data]}
  @item.data_file = double("file", :read => file_contents.to_json)
  @item.name = item_a_data["name"]
  @item.expects(:interpret_json_file).with(@item.data_file).returns(file_contents)
  @item.expects(:save).returns(true)

  expect(@item.process_data_file).to be_truthy
  expect(@item.data).to eq item_a_data.to_json
end

Обратите внимание, что ошибка возникает, когда я звоню @item.expects

В моем Gemfile у меня есть следующие гемы (среди прочих):

group :development, :test do
  gem 'byebug'
  gem 'sqlite3'
  gem 'rspec-rails'
  gem 'rb-fsevent', '~> 0.9.1'
  gem 'guard-rspec', '4.7.3'
  gem 'guard-spork', '2.1.0'
  gem 'spork', '0.9.2'
  gem 'jasmine-rails'
  gem 'teaspoon-jasmine'
end

group :test do
  gem 'capybara'
  gem 'cucumber-rails', :require => false
  gem 'database_cleaner'
  gem 'factory_girl_rails', '4.1.0'
  gem 'launchy'
  gem 'poltergeist'
  gem 'timecop'
  gem 'webmock'
  gem 'simplecov', '~> 0.16.0'
  gem 'rails-controller-testing'
end

spec_helper.rb:

require 'rubygems'
require 'spork'
#uncomment the following line to use spork with the debugger
#require 'spork/ext/ruby-debug'

Spork.prefork do
 require 'simplecov'
  SimpleCov.start 'rails'
  # 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 'devise'
  require './spec/controllers/controller_helpers.rb'

  # 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::Test::ControllerHelpers, type: :controller
    config.include ControllerHelpers, type: :controller

    config.include Capybara::DSL

    # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
    config.fixture_path = "#{::Rails.root}/spec/fixtures"

    # If you're not using ActiveRecord, or you'd prefer not to run each of your
    # examples within a transaction, remove the following line or assign false
    # instead of true.
    config.use_transactional_fixtures = true

    # 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

    config.infer_spec_type_from_file_location!

    # Run specs in random order to surface order dependencies. If you find an
    # order dependency and want to debug it, you can fix the order by providing
    # the seed, which is printed after each run.
    #     --seed 1234
    config.order = "random"
    config.include FactoryGirl::Syntax::Methods

    # config.expect_with :rspec do |expectations|
    #   expectations.syntax = :expect
    # end
 end
end

Spork.each_run do # Этот код будет запускаться при каждом запуске ваших спецификаций.конец

1 Ответ

0 голосов
/ 25 сентября 2018

Решением было бы переписать его в следующем синтаксисе:

expect(@item).to receive(:interpret_json_file).with(@item.data_file) { file_contents } 
expect(@item).to receive(:save) { true }

В основном модель ActiveRecord не знает об ожиданиях rspec и не должна этого делать.Если эти спецификации работали раньше, то вы могли бы использовать некоторые украшения для моделей ActiveRecord, и поэтому они работали ранее.

...