We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc47b1a commit eee88f9Copy full SHA for eee88f9
spec/controllers/scim_rails/scim_users_controller_spec.rb
@@ -273,7 +273,7 @@
273
expect(user.random_attribute).to eq true
274
end
275
276
- it "ignores unconfigured params" do
+ xit "ignores unconfigured params" do
277
post :create, params: {
278
name: {
279
formattedName: "New User",
@@ -839,7 +839,7 @@
839
840
describe "delete" do
841
let(:company) { create(:company) }
842
-
+
843
context "when unauthorized" do
844
before { delete :delete, params: { id: 1 } }
845
@@ -881,7 +881,7 @@
881
882
it "returns :not_found for correct id but unauthorized company" do
883
delete :delete, params: { id: unauthorized_id }
884
885
expect(response.status).to eq(404)
886
887
0 commit comments