blob: 350d5d521dbdac7b3ddc836fcc8b2711fdc1fba0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
require 'rails_helper'
RSpec.describe Oauth::ApplicationsController, type: :controller do
describe 'GET #index' do
it 'returns http success'
end
describe 'POST #create' do
it 'redirects to the application page'
end
end
|