Don't remove key-value from the subject hash we might want to use it again.

This commit is contained in:
Florent Piteau
2012-02-29 15:49:19 +01:00
parent 9eebeb2155
commit ba01349eb0
2 changed files with 9 additions and 1 deletions

View File

@@ -298,6 +298,14 @@ describe CanCan::Ability do
@ability.can?(:read, 123 => Range).should be_true
end
it "passing a hash of subjects with multiple definitions should check permissions correctly" do
@ability.can :read, Range, :string => {:length => 4}
@ability.can [:create, :read], Range, :string => {:upcase => 'FOO'}
@ability.can?(:read, "foo" => Range).should be_true
@ability.can?(:read, "foobar" => Range).should be_false
@ability.can?(:read, 1234 => Range).should be_true
end
it "should allow to check ability on Hash-like object" do
class Container < Hash; end
@ability.can :read, Container