discourse/spec/models/api_key_scope_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
286 B
Ruby
Raw Normal View History

# 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