Revisions

gist: 227483 Download_button fork
public
Public Clone URL: git://gist.github.com/227483.git
Embed All Files: show embed
debug_spec.rb #
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'spec'
require 'spec/autorun'
 
require 'ruby-debug'
 
describe "the describe block" do
  breakpoint
 
  it "should have an it block" do
    breakpoint
    0 # need something otherwise it'll fall out of this block...
  end
end