Sha256: d4c71a3fcd8fdda7a33fc16aad46f896a32e51a468a456bc93d3cf26d5e0167b

Contents?: true

Size: 1.42 KB

Versions: 16

Compression:

Stored size: 1.42 KB

Contents

Feature: double handling to_ary

  Ruby implicitly sends `to_ary` to all of the objects in an `Array` when the
  array receives `flatten`:

      [obj].flatten # => obj.to_ary

  If `to_ary` raises a `NoMethodError`, Ruby sees that the object can not be coerced
  into an array and moves on to the next object.

  To support this, an RSpec double will raise a NoMethodError when it receives
  `to_ary` _even if it is set `as_null_object`_, unless `to_ary` is explicitly
  stubbed.

  Scenario: double receiving to_ary
    Given a file named "example.rb" with:
      """ruby
      describe "#to_ary" do
        shared_examples "to_ary" do
          it "raises a NoMethodError" do
            expect { obj.to_ary }.to raise_error(NoMethodError)
          end

          it "can be overridden with a stub" do
            obj.stub(:to_ary) { :non_nil_value }
            obj.to_ary.should be(:non_nil_value)
          end

          it "supports Array#flatten" do
            obj = double('foo')
            [obj].flatten.should eq([obj])
          end
        end

        context "sent to a double as_null_object" do
          let(:obj) { double('obj').as_null_object }
          include_examples "to_ary"
        end

        context "sent to a double without as_null_object" do
          let(:obj) { double('obj') }
          include_examples "to_ary"
        end
      end
     """
    When I run `rspec example.rb`
    Then the examples should all pass

Version data entries

16 entries across 16 versions & 6 rubygems

Version Path
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/rspec-mocks-2.13.0/features/method_stubs/to_ary.feature
rspec-mocks-2.14.1 features/method_stubs/to_ary.feature
rspec-mocks-2.14.0 features/method_stubs/to_ary.feature
sshp-0.0.2 vendor/ruby/1.9.1/gems/rspec-mocks-2.13.1/features/method_stubs/to_ary.feature
sshp-0.0.1 vendor/ruby/1.9.1/gems/rspec-mocks-2.13.1/features/method_stubs/to_ary.feature
rspec-mocks-2.14.0.rc1 features/method_stubs/to_ary.feature
sidekiq-statsd-0.1.1 vendor/ruby/1.9.1/gems/rspec-mocks-2.13.1/features/method_stubs/to_ary.feature
sidekiq-statsd-0.1.0 vendor/ruby/1.9.1/gems/rspec-mocks-2.13.1/features/method_stubs/to_ary.feature
rspec-mocks-2.13.1 features/method_stubs/to_ary.feature
vagrant-actionio-0.0.9 vendor/bundle/gems/rspec-mocks-2.13.0/features/method_stubs/to_ary.feature
rspec-mocks-2.13.0 features/method_stubs/to_ary.feature
remq-0.0.4 vendor/bundle/gems/rspec-mocks-2.12.2/features/method_stubs/to_ary.feature
remq-0.0.3 vendor/bundle/gems/rspec-mocks-2.12.2/features/method_stubs/to_ary.feature
rspec-mocks-2.12.2 features/method_stubs/to_ary.feature
rspec-mocks-2.12.1 features/method_stubs/to_ary.feature
rspec-mocks-2.12.0 features/method_stubs/to_ary.feature