Sha256: ec5c0ae6f3a4d3e98b711cdeca101ff12f4faf790ee1a13220cc07f4e2b99e5b
Contents?: true
Size: 953 Bytes
Versions: 16
Compression:
Stored size: 953 Bytes
Contents
require 'active_record/spec_helper' require_all File.dirname(__FILE__) + "/../../shared/" def preconfigure CanTango.configure do |config| config.permit_engine.set :on config.permission_engine.set :off end end describe 'Licenses usage' do context 'Musicianslicense applied to UserRolePermit' do before(:each) { preconfigure @user = User.create!(:email => "kris@gmail.com", :role => 'user') } let(:current_user) { @user } let(:ability) { current_ability(:user) } it "should be allowed to read Song" do ability.should be_allowed_to(:read, Song) end it "should be allowed to write Tune" do ability.should be_allowed_to(:write, Tune) end it "should be allowed to manage Concerto" do ability.should be_allowed_to(:read, Concerto) end it "should be allowed to write Tune" do ability.should_not be_allowed_to(:manage, Improvisation) end end end
Version data entries
16 entries across 16 versions & 1 rubygems