Fixed mixin test and fixtures to work with postgresql #353 [Scott Baron]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@253 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
4b229d1034
commit
edbeec91ba
18
activerecord/test/fixtures/mixins.yml
vendored
18
activerecord/test/fixtures/mixins.yml
vendored
@ -1,30 +1,30 @@
|
||||
# tree mixins
|
||||
tree_1:
|
||||
id: 1
|
||||
id: 1001
|
||||
type: TreeMixin
|
||||
parent_id: 0
|
||||
|
||||
tree_2:
|
||||
id: 2
|
||||
id: 1002
|
||||
type: TreeMixin
|
||||
parent_id: 1
|
||||
parent_id: 1001
|
||||
|
||||
tree_3:
|
||||
id: 3
|
||||
id: 1003
|
||||
type: TreeMixin
|
||||
parent_id: 2
|
||||
parent_id: 1002
|
||||
|
||||
tree_4:
|
||||
id: 4
|
||||
id: 1004
|
||||
type: TreeMixin
|
||||
parent_id: 1
|
||||
parent_id: 1001
|
||||
|
||||
# List mixins
|
||||
|
||||
<% (1..4).each do |counter| %>
|
||||
list_<%= counter %>:
|
||||
id: <%= counter+6 %>
|
||||
id: <%= counter+1006 %>
|
||||
pos: <%= counter %>
|
||||
type: ListMixin
|
||||
parent_id: 5
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
@ -174,7 +174,11 @@ def test_insert
|
||||
assert @extra
|
||||
|
||||
assert_equal @extra.parent, @tree_1
|
||||
assert_equal [@tree_2, @tree_4, @extra], @tree_1.children
|
||||
|
||||
assert_equal 3, @tree_1.children.size
|
||||
assert @tree_1.children.include?(@extra)
|
||||
assert @tree_1.children.include?(@tree_2)
|
||||
assert @tree_1.children.include?(@tree_4)
|
||||
end
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user