discourse/spec/models/api_key_scope_spec.rb
Alan Guo Xiang Tan 4e67297a7c FIX: Missing allowed urls when displaying granualar API key scopes.
Follow-up to 3791fbd9196c5a10d2723e3c46e7cf8f008caa4c
2021-12-07 10:17:17 +08:00

13 lines
286 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe ApiKeyScope do
describe '.find_urls' do
it 'should return the right urls' do
expect(ApiKeyScope.find_urls(actions: ["posts#create"], methods: []))
.to contain_exactly("/posts (POST)")
end
end
end