我收到此错误:
method_missing':
expect
在示例组中不可用(例如 一个describe
或context
块。它只能从内部获得 单个示例(例如it
块)或来自运行的构造 示例的范围(例如before
,let
等)。 (RSpec的::核心:: ExampleGroup :: WrongScopeError)
对于此规范:
describe 'canary test' do
expect(true).to be true
end
答案 0 :(得分:6)
您需要将测试包装在一个块内,例如你可以:
describe 'canary test' do
it 'it true' do
expect(true).to be true
end
end