X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/71cb2c50fcaf29e2b933fc981e40a00223d94d34..47d55a2b0f6057cb96b2bd4c98748f87365d8d02:/test/abilities/api_abilities_test.rb?ds=sidebyside diff --git a/test/abilities/api_abilities_test.rb b/test/abilities/api_abilities_test.rb index 8ddc54561..0c97dc6a0 100644 --- a/test/abilities/api_abilities_test.rb +++ b/test/abilities/api_abilities_test.rb @@ -21,7 +21,8 @@ end class UserApiAbilityTest < ApiAbilityTest test "Note permissions" do - ability = ApiAbility.new create(:user) + token = create(:oauth_access_token, :scopes => %w[write_notes]) + ability = ApiAbility.new token [:index, :create, :comment, :feed, :show, :search, :close, :reopen].each do |action| assert ability.can?(action, Note), "should be able to #{action} Notes" @@ -35,7 +36,8 @@ end class ModeratorApiAbilityTest < ApiAbilityTest test "Note permissions" do - ability = ApiAbility.new create(:moderator_user) + token = create(:oauth_access_token, :scopes => %w[write_notes], :user => create(:moderator_user)) + ability = ApiAbility.new token [:index, :create, :comment, :feed, :show, :search, :close, :reopen, :destroy].each do |action| assert ability.can?(action, Note), "should be able to #{action} Notes"