discourse/spec/services/user_activator_spec.rb
Daniel Waterworth 6e161d3e75
DEV: Allow fab! without block (#24314)
The most common thing that we do with fab! is:

    fab!(:thing) { Fabricate(:thing) }

This commit adds a shorthand for this which is just simply:

    fab!(:thing)

i.e. If you omit the block, then, by default, you'll get a `Fabricate`d object using the fabricator of the same name.
2023-11-09 16:47:59 -06:00

22 lines
713 B
Ruby

# frozen_string_literal: true
RSpec.describe UserActivator do
fab!(:user)
let!(:email_token) { Fabricate(:email_token, user: user) }
describe "email_activator" do
let(:activator) { EmailActivator.new(user, nil, nil, nil) }
it "create email token and enqueues user email" do
now = freeze_time
activator.activate
email_token = user.reload.email_tokens.last
expect(email_token.created_at).to eq_time(now)
job_args = Jobs::CriticalUserEmail.jobs.last["args"].first
expect(job_args["user_id"]).to eq(user.id)
expect(job_args["type"]).to eq("signup")
expect(EmailToken.hash_token(job_args["email_token"])).to eq(email_token.token_hash)
end
end
end