No commit activity in last 3 years
No release in over 3 years
RSpec on IRB
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

>= 0
 Project Readme

Interactive RSpec¶ ↑

RSpec on IRB

Features¶ ↑

Execute RSpec matchers in the console¶ ↑

> (1+1).should == 3
F

Failures:

  1)
     Failure/Error: Unable to find matching line from backtrace
       expected: 3
            got: 2 (using ==)
     # (irb):2

Finished in 18.53 seconds
1 example, 1 failure

Failed examples:

rspec ./.rvm/gems/ruby-1.8.7-p334/gems/interactive_rspec-0.0.1/lib/interactive_rspec.rb:44 #
=> false

Let’s call this the “interactive RSpec”.

Execute spec file(s) via running IRB session¶ ↑

> irspec 'path/to/spec_file_spec.rb'

The filename parameter matches to various shortcuts such as:

'spec/foo'    => spec/foo_spec.rb
'models/user' => spec/models/user_spec.rb
'controllers' => spec/controllers/**/*_spec.rb
:all          => **/*_spec.rb

How to start¶ ↑

Launch an interactive RSpec console via CLI¶ ↑

% irspec

Launch an interactive RSpec console via running IRB session¶ ↑

> require 'rubygems'
> require 'interactive_rspec'
> irspec

With Rails¶ ↑

Bundle interactive_rspec gem¶ ↑

gem 'interactive_rspec'

% bundle

Start up your Rails console¶ ↑

% rails c

Then it’s done!¶ ↑

You can check how the matchers work:

> irspec
> User.new(:name => 'matz').should_not be_valid

You can run any of the existing spec files:

> irspec 'spec/requests/users_spec.rb'

You might notice that it runs suuuuper fast since irspec uses already loaded Rails process.

Contributing to Interactive RSpec¶ ↑

  • Fork, fix, then send me a pull request.

Copyright © 2011 Akira Matsuda. See MIT-LICENSE for further details.