Skip to content

Instantly share code, notes, and snippets.

@chikadance
Created December 10, 2013 09:55
Show Gist options
  • Save chikadance/7888260 to your computer and use it in GitHub Desktop.
Save chikadance/7888260 to your computer and use it in GitHub Desktop.
ex3
class C
end
describe "a msg" do
#let(:c) { C.new }
before do
p '1 level before'
end
describe "2 level" do
before do
p '2 level before'
end
it do
p '2 level it'
end
end
it do
p '1 level it'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment