main
1# frozen_string_literal: true
2
3RSpec.describe Scim::Kit::V2 do
4 subject { described_class }
5
6 describe '.configure' do
7 specify do
8 subject.configure do |config|
9 expect(config).to be_instance_of(Scim::Kit::V2::Configuration::Builder)
10 end
11 end
12
13 specify do
14 called = false
15 subject.configure { |_config| called = true }
16 expect(called).to be(true)
17 end
18 end
19end