Delete FranceConnect entreprise client

This commit is contained in:
Xavier J 2016-02-11 16:02:43 +01:00
parent be25a309d8
commit 8c99559dae
2 changed files with 0 additions and 34 deletions

View file

@ -1,17 +0,0 @@
require 'spec_helper'
describe FranceConnectEntrepriseClient do
describe '.initialize' do
it 'create an openid client' do
expect(described_class).to be < OpenIDConnect::Client
end
context 'when given code in params' do
let(:code) { 'plop' }
subject { described_class.new(code: code) }
it 'set authorisation code' do
expect_any_instance_of(described_class).to receive(:authorization_code=).with(code)
described_class.new(code: code)
end
end
end
end