Commit d5c7af6

mokha <mokha@cisco.com>
2018-01-24 18:04:30
add specs for the /me endpoint.
1 parent 5cf3023
Changed files (1)
spec
requests
scim
spec/requests/scim/v2/me_spec.rb
@@ -0,0 +1,8 @@
+require 'rails_helper'
+
+describe '/scim/v2/me' do
+  it 'returns a 501' do
+    get '/scim/v2/me'
+    expect(response).to have_http_status(:not_implemented)
+  end
+end