Sha256: 7acae9e64792c743ad4a1de724bfa90501c850ad7a97d55f11e174ccc526cd42
Contents?: true
Size: 658 Bytes
Versions: 17
Compression:
Stored size: 658 Bytes
Contents
require 'spec_helper' describe Devise::Oauth2Providable::AuthorizationsController do describe 'routing' do pending 'routes POST /oauth2/authorizations' do post('/oauth2/authorizations').should route_to('devise/oauth2_providable/authorizations#create') end pending 'routes GET /oauth2/authorize' do get('/oauth2/authorize').should route_to('devise/oauth2_providable/authorizations#new') end pending 'routes POST /oauth2/authorize' do #FIXME: this is valid, but the route is not being loaded into the test post('/oauth2/authorize').should route_to('devise/oauth2_providable/authorizations#new') end end end
Version data entries
17 entries across 17 versions & 5 rubygems