web-dev-qa-db-fra.com

RSpec any_instance deprecation: comment y remédier?

Dans mon projet Rails j'utilise rspec-mocks en utilisant any_instance mais je veux éviter ce message de dépréciation:

Using any_instance from rspec-mocks' old :should syntax without explicitly enabling the syntax is deprecated. Use the new :expect syntax or explicitly enable :should instead.

Voici mes spécifications:

describe (".create") do
  it 'should return error when...' do
    User.any_instance.stub(:save).and_return(false)
    post :create, user: {name: "foo", surname: "bar"}, format: :json
    expect(response.status).to eq(422)
  end
end

Voici mon contrôleur:

def create
    @user = User.create(user_params)
    if @user.save
      render json: @user, status: :created, location: @user
    else
      render json: @user.errors, status: :unprocessable_entity
    end
end

Je voudrais utiliser la syntaxe new: expect mais je ne trouve pas comment l'utiliser correctement.

J'utilise RSpec .0.2.

44
Rowandish

Utilisation allow_any_instance_of :

describe (".create") do
  it 'returns error when...' do
    allow_any_instance_of(User).to receive(:save).and_return(false)
    post :create, user: {name: "foo", surname: "bar"}, format: :json
    expect(response.status).to eq(422)
  end
end
95
Uri Agassi

Je peux le reproduire:

Dans mon fichier test.rb: -

#!/usr/bin/env Ruby

class Foo
  def baz
    11
  end
end

Dans mon fichier test_spec.rb

require_relative "../test.rb"

describe Foo do
  it "invokes #baz" do
    Foo.any_instance.stub(:baz).and_return(20)
    expect(subject.baz).to eq(20)
  end
end

Maintenant, si je l'exécute: -

arup@linux-wzza:~/Ruby> rspec
.

Deprecation Warnings:

Using `any_instance` from rspec-mocks' old `:should` syntax without explicitly enabling the syntax is deprecated. Use the new `:expect` syntax or explicitly enable `:should` instead. Called from /home/arup/Ruby/spec/test_spec.rb:4:in `block (2 levels) in <top (required)>'.

Maintenant, j'ai trouvé le changelog

allow(Klass.any_instance) et expect(Klass.any_instance) affichent désormais un avertissement . Il s'agit généralement d'une erreur , et les utilisateurs préfèrent généralement allow_any_instance_of Ou expect_any_instance_of À la place. ( Sam Phippen)

Je change test_spec.rb Comme ci-dessous:

require_relative "../test.rb"

describe Foo do
  it "invokes #baz" do
    expect_any_instance_of(Foo).to receive(:baz).and_return(20)
    expect(subject.baz).to eq(20)
  end
end

et cela fonctionne parfaitement: -

arup@linux-wzza:~/Ruby> rspec
.

Finished in 0.01652 seconds (files took 0.74285 seconds to load)
1 example, 0 failures
arup@linux-wzza:~/Ruby>
5
Arup Rakshit