gitlab-org--gitlab-foss/spec/workers/delete_user_worker_spec.rb

21 lines
675 B
Ruby
Raw Normal View History

require 'spec_helper'
describe DeleteUserWorker do
2016-03-14 10:18:03 +00:00
let!(:user) { create(:user) }
let!(:current_user) { create(:user) }
2016-03-14 10:18:03 +00:00
it "calls the DeleteUserWorker with the params it was given" do
2017-06-21 13:48:12 +00:00
expect_any_instance_of(Users::DestroyService).to receive(:execute)
.with(user, {})
2016-03-04 08:49:23 +00:00
described_class.new.perform(current_user.id, user.id)
2016-03-14 10:18:03 +00:00
end
2016-03-04 08:49:23 +00:00
2016-03-14 10:18:03 +00:00
it "uses symbolized keys" do
2017-06-21 13:48:12 +00:00
expect_any_instance_of(Users::DestroyService).to receive(:execute)
.with(user, test: "test")
2016-03-04 08:49:23 +00:00
described_class.new.perform(current_user.id, user.id, "test" => "test")
end
end