我正在学习RSpec,我在理解共享主题方面遇到了一些麻烦,以及它如何与新的期望语法协同工作。
我关注tutorial from the cancan wiki,但我无法弄清楚如何测试用户何时无法使用相同的语法执行操作。
user_spec.rb:
require 'spec_helper'
require "cancan/matchers"
describe User do
describe 'abilities' do
let(:user) { FactoryGirl.create(:user) }
let(:ability) { FactoryGirl.create(:user) }
subject(:ability) { Ability.new(user) }
it { should be_able_to :read, User.new }
# clunky expectation
it 'should not be able to destroy others' do
expect(ability).not_to be_able_to(:destroy, User.new)
end
end
end
我想做的是写一个像
这样的期望it { should not be_able_to :delete, User.new }
我是不是错了?
答案 0 :(得分:6)
您可以在缩短版本中使用should_not语法:
it { should_not be_able_to :delete, User.new }
或者使用RSpec 3的同义词:
it { is_expected.not_to be_able_to :delete, User.new }