Skip to content

Instantly share code, notes, and snippets.

View jaredhabeck's full-sized avatar

Jared Habeck jaredhabeck

  • Ethisphere
  • Boulder, CO
View GitHub Profile
@jaredhabeck
jaredhabeck / rspec-syntax-cheat-sheet.rb
Created June 15, 2012 21:28 — forked from irohiroki/rspec-syntax-cheat-sheet.rb
RSpec 2 syntax cheat sheet by example
# RSpec 2.0 syntax Cheet Sheet by http://ApproachE.com
# defining spec within a module will automatically pick Player::MovieList as a 'subject' (see below)
module Player
describe MovieList, "with optional description" do
it "is pending example, so that you can write ones quickly"
it "is already working example that we want to suspend from failing temporarily" do
pending("working on another feature that temporarily breaks this one")