Skip to content

Instantly share code, notes, and snippets.

@ybenjo
Created June 15, 2010 06:02
Show Gist options
  • Save ybenjo/438749 to your computer and use it in GitHub Desktop.
Save ybenjo/438749 to your computer and use it in GitHub Desktop.
describe Hoge do
before do
@h = Hoge.new
end
describe Hoge, "メソッドAについて" do
it "0には1を返す" do
@h.method_a(0).should == 1
end
end
end
#describe Hogeを二回繰り返してて気持ち悪い
#本当はこう書きたい
#before do
# @h = Hoge.new
#end
#describe Hoge, "メソッドAについて" do
# it "0には1を返す" do
# @h.method_a(0).should == 1
# end
#end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment