This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/spec/models/api_key_scope_spec.rb
2023-01-09 11:49:28 +00:00

12 lines
276 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
end
end