mirror of
https://github.com/discourse/discourse.git
synced 2024-12-13 19:53:51 +08:00
27 lines
717 B
Ruby
27 lines
717 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Jobs::DiscourseNarrativeBot::GrantBadges do
|
|
let(:user) { Fabricate(:user) }
|
|
let(:other_user) { Fabricate(:user) }
|
|
|
|
before do
|
|
DiscourseNarrativeBot::Store.set(user.id, completed: [
|
|
DiscourseNarrativeBot::NewUserNarrative.to_s,
|
|
DiscourseNarrativeBot::AdvancedUserNarrative.to_s
|
|
])
|
|
end
|
|
|
|
it 'should grant the right badges' do
|
|
described_class.new.execute_onceoff({})
|
|
|
|
expect(user.badges.count).to eq(2)
|
|
|
|
expect(user.badges.map(&:name)).to contain_exactly(
|
|
DiscourseNarrativeBot::NewUserNarrative::BADGE_NAME,
|
|
DiscourseNarrativeBot::AdvancedUserNarrative::BADGE_NAME,
|
|
)
|
|
|
|
expect(other_user.badges.count).to eq(0)
|
|
end
|
|
end
|