Sha256: 0d843b569572d4747f52bb743e2a36fcdf770f77a44366791b7fe1ac7dd98806

Contents?: true

Size: 822 Bytes

Versions: 12

Compression:

Stored size: 822 Bytes

Contents

## Installation

To install Bogus, all you need to do is add:

    gem "bogus"

to your Gemfile.

## Configuration

In your `spec_helper.rb`, require bogus:

    require 'bogus/rspec'

Bogus will hook into RSpec on it's own, but if you want to be explicit about the used mock framework, you can put this in your `spec_helper.rb`:

    RSpec.configure do |c|
      # already done by requiring bogus/rspec
      c.mock_with Bogus::RSpecAdapter
    end

And configure it to look for classes in your namespace:

    Bogus.configure do |c|
      c.search_modules << My::Namespace
    end

You will probably also want to create a configuration file for your fakes (for example `spec/support/fakes.rb`):

    Bogus.fakes do
      # fakes go here
    end

and require it in your gem file:

    require_relative 'support/fakes.rb'

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
bogus-0.1.7 features/getting_started.md
bogus-0.1.6 features/getting_started.md
bogus-0.1.5 features/getting_started.md
bogus-0.1.4 features/getting_started.md
bogus-0.1.3 features/getting_started.md
bogus-0.1.2 features/getting_started.md
bogus-0.1.1 features/getting_started.md
bogus-0.1.0 features/getting_started.md
bogus-0.0.4 features/getting_started.md
bogus-0.0.3 features/getting_started.md
bogus-0.0.3.rc.2 features/getting_started.md
bogus-0.0.3.rc.1 features/getting_started.md