答案 0 :(得分:1)
我觉得你还在做什么......但是,如果你想重用一些规格,你可以使用:
答案 1 :(得分:0)
您可能想要执行以下操作:
describe 'GET #index' do
context 'admin user' do
scenario 'is blocked' do
# your test
end
scenario 'is not blocked' do
# your test
end
end
context 'regular user' do
scenario 'is blocked' do
# your test
end
scenario 'is not blocked' do
# your test
end
end
end