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の構文が分かってなかっただけでした。
いきなり定数が現れたらそりゃエラーになりますね。
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の構文が分かってなかっただけでした。
いきなり定数が現れたらそりゃエラーになりますね。