mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
4e67297a7c
Follow-up to 3791fbd919
13 lines
286 B
Ruby
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
|