Sha256: b6025fe8b3a45bf556ab8cd39ba50d25d45177579be7ca61be86d25c4e4e9172
Contents?: true
Size: 758 Bytes
Versions: 1
Compression:
Stored size: 758 Bytes
Contents
# Reciper Suppose you're writing a book containing some programming recipes. It would be great to have a test suite that ensures that your snippets really are really working. But why we should write a test suite if RSpec already does an awesome job doing it ? Reciper is a collection of helpers that helps you write tests for your book recipes. It should be included on your described class and used whenever you need to copy files, copy line ranges, run tests, overwrite files, among other things. ## Install On your `Gemfile`, just do this: ```ruby gem "reciper" ``` Run `bundle install` and on your described class just include `Reciper::Helpers` ```ruby describe "My awesome recipe" do include Reciper::Helpers # (...) end ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
reciper-0.1.0 | README.md |