discourse/spec/jobs/update_username_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
441 B
Ruby
Raw Normal View History

# frozen_string_literal: true
RSpec.describe Jobs::UpdateUsername do
fab!(:user)
it "does not do anything if user_id is invalid" do
events =
DiscourseEvent.track_events do
described_class.new.execute(
user_id: -999,
old_username: user.username,
new_username: "somenewusername",
avatar_template: user.avatar_template,
)
end
expect(events).to eq([])
end
end