mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:50:00 +08:00
19 lines
501 B
Ruby
19 lines
501 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.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
|
|
|
|
it "should return logster urls" do
|
|
expect(ApiKeyScope.find_urls(actions: [Logster::Web], methods: [])).to contain_exactly(
|
|
"/logs/messages.json (POST)",
|
|
"/logs/show/:id.json (GET)",
|
|
)
|
|
end
|
|
end
|
|
end
|