mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-06 14:36:59 +00:00
36 lines
839 B
YAML
36 lines
839 B
YAML
# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
|
|
|
|
# This model initially had no columns defined. If you add columns to the
|
|
# model remove the "{}" from the fixture names and add the columns immediately
|
|
# below each fixture, per the syntax in the comments below
|
|
#
|
|
one: {}
|
|
# column: value
|
|
#
|
|
two: {}
|
|
# column: value
|
|
|
|
queued_job:
|
|
tournament: one
|
|
job_name: "Test Queued Job"
|
|
status: "Queued"
|
|
details: "Test job details"
|
|
|
|
running_job:
|
|
tournament: one
|
|
job_name: "Test Running Job"
|
|
status: "Running"
|
|
details: "Test running job details"
|
|
|
|
errored_job:
|
|
tournament: one
|
|
job_name: "Test Errored Job"
|
|
status: "Errored"
|
|
details: "Test error message"
|
|
|
|
another_tournament_job:
|
|
tournament: two
|
|
job_name: "Another Tournament Job"
|
|
status: "Running"
|
|
details: "Different tournament test"
|