Created
December 10, 2013 09:55
-
-
Save chikadance/7888260 to your computer and use it in GitHub Desktop.
ex3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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