Created
September 2, 2013 18:20
-
-
Save kachick/6415727 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
describe "Foo" do | |
context "Bar" do | |
it "Baz" do | |
end | |
end | |
end | |
#=> "Foo Bar Baz" | |
describe "Foo" do | |
pre_context "Bar" do | |
it "Baz" do | |
end | |
end | |
end | |
#=> "Bar Foo Baz" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
なんかが返した返り値についてのspec・・・みたいな感じで書きたいだけなんだけど、ファイル分けろかな?