mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-15 07:36:41 +10:00
16 lines
358 B
Ruby
16 lines
358 B
Ruby
require 'spec_helper'
|
|
|
|
describe Gitlab::LDAP::Config do
|
|
let(:config) { Gitlab::LDAP::Config.new provider }
|
|
let(:provider) { 'ldapmain' }
|
|
|
|
describe :initalize do
|
|
it 'requires a provider' do
|
|
expect{ Gitlab::LDAP::Config.new }.to raise_error ArgumentError
|
|
end
|
|
|
|
it "works" do
|
|
expect(config).to be_a described_class
|
|
end
|
|
end
|
|
end |