22 Zeilen
323 B
Ruby
22 Zeilen
323 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'rails_helper'
|
||
|
|
||
|
describe CustomWizard::Api do
|
||
|
context 'authorization' do
|
||
|
it 'authorizes with an oauth2 api' do
|
||
|
|
||
|
end
|
||
|
|
||
|
it 'refreshes the api access token' do
|
||
|
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context 'endpoint' do
|
||
|
it 'requests an api endpoint' do
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|