1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-08 12:35:04 +00:00

9 lines
166 B
Ruby
Raw Normal View History

2014-03-05 18:22:20 +05:30
Fabricator(:badge_type) do
name { sequence(:name) {|i| "Silver #{i}" } }
end
Fabricator(:badge) do
name { sequence(:name) {|i| "Badge #{i}" } }
badge_type
end