Froze rails gems
[depot.git] / vendor / rails / activerecord / test / fixtures / posts.yml
1 welcome:
2 id: 1
3 author_id: 1
4 title: Welcome to the weblog
5 body: Such a lovely day
6 comments_count: 2
7 type: Post
8
9 thinking:
10 id: 2
11 author_id: 1
12 title: So I was thinking
13 body: Like I hopefully always am
14 type: SpecialPost
15
16 authorless:
17 id: 3
18 author_id: 0
19 title: I don't have any comments
20 body: I just don't want to
21 type: Post
22
23 sti_comments:
24 id: 4
25 author_id: 1
26 title: sti comments
27 body: hello
28 type: Post
29
30 sti_post_and_comments:
31 id: 5
32 author_id: 1
33 title: sti me
34 body: hello
35 type: StiPost
36
37 sti_habtm:
38 id: 6
39 author_id: 1
40 title: habtm sti test
41 body: hello
42 type: Post
43
44 eager_other:
45 id: 7
46 author_id: 2
47 title: eager loading with OR'd conditions
48 body: hello
49 type: Post