blob: d32bd5ee19cdc80b920b03c7a81065fde4d3f576 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Onboarding::UserAddedWorker, '#perform', feature_category: :onboarding do
let_it_be(:namespace) { create(:group) }
subject { described_class.new.perform(namespace.id) }
it_behaves_like 'records an onboarding progress action', :user_added
end
|