Sha256: cb551b0106741376dc4f72b4b782ff195461ac743eb34788c005c9055ed5e4bc
Contents?: true
Size: 1020 Bytes
Versions: 15
Compression:
Stored size: 1020 Bytes
Contents
require 'spec_helper' require 'fixtures/models' class AdminsRoleGroupPermit < CanTango::RoleGroupPermit def initialize ability super end protected def static_rules end end class AdminRolePermit < CanTango::RolePermit def initialize ability super end protected def static_rules end end describe CanTango::Permits::RoleGroupPermit::Builder do before do CanTango.config.cache_engine.set :off end let (:user) do User.new 'kris' end let (:user_account) do ua = UserAccount.new user, :role_groups => [:admins], :roles => [:admin] user.account = ua end let (:ability) do CanTango::Ability.new user_account end let (:builder) do CanTango::Permits::RoleGroupPermit::Builder.new ability end describe 'attributes' do it "should have an ability" do builder.ability.should be_a(CanTango::Ability) end end describe '#build' do it 'should build a list of permits' do builder.build.should_not be_empty end end end
Version data entries
15 entries across 15 versions & 1 rubygems