我在另一个模块中有这个模块:
module ParentModule
module ChildModule
end
end
我希望这能奏效:
describe ParentModule do
describe ChildModule do
it 'does something without crashing' do
(1 + 1).should_be 2
end
end
end
我得到一个错误。
stack_overflow_q.rb:7:in `block in <top (required)>': uninitialized constant ChildModule (NameError)