1fe7501b49
This reverts commit cb10b725c8929b8b4460f89c9d96c773af39ba6b.
12 lines
288 B
Ruby
12 lines
288 B
Ruby
require 'spec_helper'
|
|
|
|
describe UserProjectAccessChangedService do
|
|
describe '#execute' do
|
|
it 'schedules the user IDs' do
|
|
expect(AuthorizedProjectsWorker).to receive(:bulk_perform_and_wait).
|
|
with([[1], [2]])
|
|
|
|
described_class.new([1, 2]).execute
|
|
end
|
|
end
|
|
end
|