ちなみに

火曜日の空は僕を押しつぶした。

2008-09-25から1日間の記事一覧

mini/specのdescribeも変だ

require 'mini/spec' Mini::Test.autorun describe Hoge do it 'true should be true' true.must_equal true end end これはHogaの部分でuninitialized constantになって、TestCaseが登録されない。(追記)Rubyの構文が分かってなかっただけでした。 いきなり…

mini/specは日本語itが微妙

require 'mini/spec' Mini::Test.autorun describe Object do it 'は、ほげであること' do fail end it 'は、ぴよであること' do fail end end これを走らせると、 Loaded suite test/test_jp_bug Started F Finished in 0.000596 seconds. 1) Failure: test…

miniunitを読み始めてみた

1.9に標準添付されるという噂を聞いたので読始めたのだけど、速攻こんなのでびっくりした。 file = if __FILE__ =~ /^[^\.]/ then # OMG ruby 1.9 is so lame (rubinius too) require 'pathname' pwd = Pathname.new(Dir.pwd) pn = Pathname.new(File.expand…

mini/specがひどい

require 'mini/spec' Mini::Test.autorun class Stack def empty? true end end describe Stack do before do @stack = Stack.new end it 'should be empty' do @stack.empty?.must_equal true end end これ動きません。 何がおかしいか分かりますか? とり…