Add tests for tag methods on object models
This commit is contained in:
parent
10e92b85a7
commit
5ed8ee39e9
14 changed files with 309 additions and 5 deletions
60
test/unit/old_relation_test.rb
Normal file
60
test/unit/old_relation_test.rb
Normal file
|
@ -0,0 +1,60 @@
|
|||
require File.dirname(__FILE__) + '/../test_helper'
|
||||
|
||||
class OldRelationTest < ActiveSupport::TestCase
|
||||
api_fixtures
|
||||
|
||||
def test_db_count
|
||||
assert_equal 14, OldRelation.count
|
||||
end
|
||||
|
||||
def test_relation_tags
|
||||
relation = relations(:relation_with_versions_v1)
|
||||
tags = OldRelation.find(relation.id).old_tags.order(:k)
|
||||
assert_equal 0, tags.count
|
||||
|
||||
relation = relations(:relation_with_versions_v2)
|
||||
tags = OldRelation.find(relation.id).old_tags.order(:k)
|
||||
assert_equal 0, tags.count
|
||||
|
||||
relation = relations(:relation_with_versions_v3)
|
||||
tags = OldRelation.find(relation.id).old_tags.order(:k)
|
||||
assert_equal 3, tags.count
|
||||
assert_equal "testing", tags[0].k
|
||||
assert_equal "added in relation version 3", tags[0].v
|
||||
assert_equal "testing three", tags[1].k
|
||||
assert_equal "added in relation version 3", tags[1].v
|
||||
assert_equal "testing two", tags[2].k
|
||||
assert_equal "added in relation version 3", tags[2].v
|
||||
|
||||
relation = relations(:relation_with_versions_v4)
|
||||
tags = OldRelation.find(relation.id).old_tags.order(:k)
|
||||
assert_equal 2, tags.count
|
||||
assert_equal "testing", tags[0].k
|
||||
assert_equal "added in relation version 3", tags[0].v
|
||||
assert_equal "testing two", tags[1].k
|
||||
assert_equal "modified in relation version 4", tags[1].v
|
||||
end
|
||||
|
||||
def test_tags
|
||||
relation = relations(:relation_with_versions_v1)
|
||||
tags = OldRelation.find(relation.id).tags
|
||||
assert_equal 0, tags.size
|
||||
|
||||
relation = relations(:relation_with_versions_v2)
|
||||
tags = OldRelation.find(relation.id).tags
|
||||
assert_equal 0, tags.size
|
||||
|
||||
relation = relations(:relation_with_versions_v3)
|
||||
tags = OldRelation.find(relation.id).tags
|
||||
assert_equal 3, tags.size
|
||||
assert_equal "added in relation version 3", tags["testing"]
|
||||
assert_equal "added in relation version 3", tags["testing two"]
|
||||
assert_equal "added in relation version 3", tags["testing three"]
|
||||
|
||||
relation = relations(:relation_with_versions_v4)
|
||||
tags = OldRelation.find(relation.id).tags
|
||||
assert_equal 2, tags.size
|
||||
assert_equal "added in relation version 3", tags["testing"]
|
||||
assert_equal "modified in relation version 4", tags["testing two"]
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue