Sha256: 182ed191c06faa7cb715e710a272a832a1155d63a517e51d05974263e542ab5c

Contents?: true

Size: 793 Bytes

Versions: 6

Compression:

Stored size: 793 Bytes

Contents

Feature: mock with flexmock

  As an RSpec user who prefers flexmock
  I want to be able to use flexmock without rspec mocks interfering

  Scenario: Mock with flexmock
    Given a file named "flexmock_example_spec.rb" with:
      """
      Spec::Runner.configure do |config|
        config.mock_with :flexmock
      end

      describe "plugging in flexmock" do
        it "allows flexmock to be used" do
          target = Object.new
          flexmock(target).should_receive(:foo).once
          target.foo
        end

        it "does not include rspec mocks" do
          Spec.const_defined?(:Mocks).should be_false
        end
      end
      """
    When I run "spec flexmock_example_spec.rb"
    Then the exit code should be 0
    And the stdout should match "2 examples, 0 failures"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rspec-1.2.7 features/mock_framework_integration/use_flexmock.feature
rspec-1.2.8 features/mock_framework_integration/use_flexmock.feature
rspec-1.2.3 features/mock_framework_integration/use_flexmock.feature
rspec-1.2.4 features/mock_framework_integration/use_flexmock.feature
rspec-1.2.5 features/mock_framework_integration/use_flexmock.feature
rspec-1.2.6 features/mock_framework_integration/use_flexmock.feature