Commit 3115793

mokha <mokha@cisco.com>
2019-02-23 16:03:04
split the spec tag: v0.3.1
1 parent 34fc68a
Changed files (1)
spec
scim
spec/scim/kit/v2_spec.rb
@@ -3,14 +3,16 @@
 RSpec.describe Scim::Kit::V2 do
   subject { described_class }
 
-  describe ".configure" do
+  describe '.configure' do
     specify do
-      called = false
       subject.configure do |config|
-        called = true
         expect(config).to be_instance_of(Scim::Kit::V2::Configuration::Builder)
       end
+    end
 
+    specify do
+      called = false
+      subject.configure { |_config| called = true }
       expect(called).to be(true)
     end
   end