Giter VIP home page Giter VIP logo

rr's Introduction

RR Gem Version Build Status Code Climate GPA

RR is a test double framework for Ruby that features a rich selection of double techniques and a terse syntax.

A whirlwind tour of RR

Stubs

# Stub a method to return nothing
stub(object).foo
stub(MyClass).foo

# Stub a method to always return a value
stub(object).foo { 'bar' }
stub(MyClass).foo { 'bar' }

# Stub a method to return a value when called with certain arguments
stub(object).foo(1, 2) { 'bar' }
stub(MyClass).foo(1, 2) { 'bar' }

Mocks

# Create an expectation on a method
mock(object).foo
mock(MyClass).foo

# Create an expectation on a method and stub it to always return a value
mock(object).foo { 'bar' }
mock(MyClass).foo { 'bar' }

# Create an expectation on a method with certain arguments and stub it to return
# a value when called that way
mock(object).foo(1, 2) { 'bar' }
mock(MyClass).foo(1, 2) { 'bar' }

Spies

# RSpec
stub(object).foo
expect(object).to have_received.foo

# Test::Unit
stub(object).foo
assert_received(object) {|o| o.foo }

Proxies

# Intercept a existing method without completely overriding it, and create a
# new return value from the existing one
stub.proxy(object).foo {|str| str.upcase }
stub.proxy(MyClass).foo {|str| str.upcase }

# Do the same thing except also create an expectation
mock.proxy(object).foo {|str| str.upcase }
mock.proxy(MyClass).foo {|str| str.upcase }

# Intercept a class's new method and define a double on the return value
stub.proxy(MyClass).new {|obj| stub(obj).foo; obj }

# Do the same thing except also create an expectation on .new
mock.proxy(MyClass).new {|obj| stub(obj).foo; obj }

Class instances

# Stub a method on an instance of MyClass when it is created
any_instance_of(MyClass) do |klass|
  stub(klass).foo { 'bar' }
end

# Another way to do this which gives you access to the instance itself
stub.proxy(MyClass).new do |obj|
  stub(obj).foo { 'bar' }
end

Installing RR into your project

For minimal setup, RR looks for an existing test framework and then hooks itself into it. Hence, RR works best when loaded after the test framework that you are using is loaded.

If you are using Bundler, you can achieve this by specifying the dependency on RR with require: false; then, require RR directly following your test framework.

Here's what this looks like for different kinds of projects:

Ruby project (without Bundler)

require 'your/test/framework'
require 'rr'

Ruby project (with Bundler)

# Gemfile
gem 'rr', require: false

# test helper
require 'your/test/framework'
require 'rr'

Rails project

# Gemfile
group :test do
  gem 'rr', require: false
end

# test helper
require File.expand_path('../../config/environment', __FILE__)
require 'your/test/framework'  # if you are using something other than MiniTest / Test::Unit
require 'rr'

Learning more

  1. What is a test double?
  2. Syntax between RR and other double/mock frameworks
  3. API overview

Compatibility

RR is designed and tested to work against the following Ruby versions:

  • 1.8.7-p374
  • 1.9.3-p392
  • 2.0.0-p195
  • JRuby 1.7.4

as well as the following test frameworks:

  • RSpec 1 (Ruby 1.8.7)
  • RSpec 2 (Ruby 1.9+)
  • Test::Unit 1 (Ruby 1.8.7)
  • Test::Unit 2.4.x (Ruby 1.8.7)
  • Test::Unit 2.0.0 (Ruby 1.9+)
  • Test::Unit 2.5.x (Ruby 1.9+)
  • MiniTest 4 (Ruby 1.9+)
  • Minitest 5 (Ruby 1.9+)

and the following Rails versions:

  • Rails 2.3.x (Ruby 1.8.7)
  • Rails 3.2.x (Ruby 1.9+)
  • Rails 4.0.x (Ruby 1.9+)

Help!

If you have a question or are having trouble, simply post it as an issue and I'll respond as soon as I can.

Contributing

Want to contribute a bug fix or new feature to RR? Great! Follow these steps:

  1. Make sure you have Ruby 2.0.0-p195 installed (this is the primary Ruby version that RR targets).
  2. Clone the repo (you probably knew that already).
  3. Make a new branch off of master with a descriptive name.
  4. Work on your patch.
  5. Run bundle install.
  6. Ensure all of the tests pass by running bundle exec rake.
  7. If you want to go the extra mile, install the other Ruby versions listed above in the compatibility table, and repeat steps 5-6. See the "Running test suites" section below for more information.
  8. When you're done, push your branch and create a pull request from it. I'll respond as soon as I can.

Running tests

As indicated by the compatibility list above, in order to test support for multiple Ruby versions and environments, there are multiple test suites, and Rake tasks to run these suites. The list of available Rake tasks depends on which version of Ruby you are under, but you can get the full list with:

bundle exec rake -D spec:

To run all the suites, simply say:

bundle exec rake

(Incidentally, this is also the command which Travis runs.)

Author/Contact

RR was originally written by Brian Takita. It is currently maintained by Elliot Winkler ([email protected]).

Credits

With any development effort, there are countless people who have contributed to making it possible; RR is no exception! You can read the full list of credits here.

License

RR is available under the MIT license.

rr's People

Contributors

bonkydog avatar brynary avatar btakita avatar cespare avatar cldwalker avatar dchelimsky avatar ephasme avatar evanphx avatar gavingmiller avatar james2m avatar jferris avatar jneen avatar libc avatar mcmire avatar mniessner avatar nicknovitski avatar ono avatar phildarnowsky avatar redinger avatar srbaker avatar thibaut avatar wincent avatar wynst avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.