mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 15:25:35 +08:00
6e161d3e75
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.
22 lines
713 B
Ruby
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
|