aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/parrots.yml
blob: 4f0a090e03599b46200ea07b8b61c1f84c2478e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
_fixture:
  ignore: DEAD_PARROT

DEAD_PARROT: &DEAD_PARROT
  parrot_sti_class: DeadParrot

george:
  name: "Curious George"
  treasures: diamond, sapphire
  parrot_sti_class: LiveParrot

louis:
  name: "King Louis"
  treasures: [diamond, sapphire]
  parrot_sti_class: LiveParrot

frederick:
  name: $LABEL
  parrot_sti_class: LiveParrot

polly:
  id: 4
  name: $LABEL
  killer: blackbeard
  treasures: sapphire, ruby
  <<: *DEAD_PARROT

DEFAULTS: &DEFAULTS
  treasures: sapphire, ruby
  parrot_sti_class: LiveParrot

davey:
  *DEFAULTS