mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-03 15:31:35 +08:00
* DEV: convert grant-badge to use component modal API * DEV: add system test for grant badge modal happy path
13 lines
281 B
Ruby
13 lines
281 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:badge_type) { name { sequence(:name) { |i| "Silver #{i}" } } }
|
|
|
|
Fabricator(:badge) do
|
|
name { sequence(:name) { |i| "Badge #{i}" } }
|
|
badge_type
|
|
end
|
|
|
|
Fabricator(:manually_grantable_badge, from: :badge) do
|
|
system false
|
|
query nil
|
|
end
|