Add tests for tag methods on object models

This commit is contained in:
Tom Hughes 2013-12-04 18:39:07 +00:00
parent 10e92b85a7
commit 5ed8ee39e9
14 changed files with 309 additions and 5 deletions

View file

@ -135,4 +135,22 @@ class WayTest < ActiveSupport::TestCase
}
assert_equal "Element way/23 has duplicate tags with key dup", message_update.message
end
def test_way_tags
way = current_ways(:way_with_versions)
tags = Way.find(way.id).way_tags.order(:k)
assert_equal 2, tags.count
assert_equal "testing", tags[0].k
assert_equal "added in way version 3", tags[0].v
assert_equal "testing two", tags[1].k
assert_equal "modified in way version 4", tags[1].v
end
def test_tags
way = current_ways(:way_with_versions)
tags = Way.find(way.id).tags
assert_equal 2, tags.size
assert_equal "added in way version 3", tags["testing"]
assert_equal "modified in way version 4", tags["testing two"]
end
end