0
的考慮RSPEC(僞)中的某一部分:RSPEC獲得抽象語法樹中的所有測試/預期
describe Person do
describe '#name' do
it 'is present' do
expect(name).not_to be_blank
end
end
end
我怎麼能得到的是,抽象語法樹,使得它看起來有點像(重僞):
[
describe: {
name: Person,
content: [
describe: {
name: '#name',
content: [
it: { tests: [{what: name, condition: 'not blank'}]
]
}
}
]
是否有內置工具來顯示RSPEC中的整個執行樹?