Sha256: 28c005c72662344b849c5493f28cfe19c2ffae7d76f47e6cb963e9b8d02e9d28

Contents?: true

Size: 1.22 KB

Versions: 1

Compression:

Stored size: 1.22 KB

Contents

h1. FakeWeb Matcher

An RSpec matcher for the Fakeweb HTTP stubbing library, allowing you to use RSpec syntax to check if requests to particular URIs have been made.

h2. Installing

First, install the gem
<pre><code>gem install freelancing-god-fakeweb-matcher --source http://gems.github.com</code></pre>

Then, in your @spec/spec_helper.rb@ file, you'll need to require the library _after_ you have required "FakeWeb":http://fakeweb.rubyforge.org and "RSpec":http://rspec.info. It should end up looking something like this:

<pre><code>require 'spec'
require 'fakeweb'
require 'fakeweb_matcher'</code></pre>

This ensures that the matcher is automatically loaded into RSpec for you.

h2. Usage

<pre><code>FakeWeb.should have_requested(:get, 'http://example.com')
FakeWeb.should have_requested(:any, 'http://example.com')
FakeWeb.should_not have_requested(:put, 'http://example.com')</code></pre>

h2. Contribution

Unsurprisingly, this library is tested using RSpec, and relies upon FakeWeb. It also uses "YARD":http://yard.soen.ca/ for documentation, so if you're submitting patches (which are most definitely welcome!) please use YARD syntax and have valid specs.

h2. Copyright

Copyright (c) 2009 Pat Allan, released under an MIT Licence

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
freelancing-god-fakeweb-matcher-1.0.1 README.textile