X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e1f79d84adc413afa2a1a8d8d06fda9fa5151d49..34e3e51456774127d43408b7ab65c24f41373f62:/test/models/relation_test.rb
diff --git a/test/models/relation_test.rb b/test/models/relation_test.rb
index 5d60ebb52..33e2fa0b0 100644
--- a/test/models/relation_test.rb
+++ b/test/models/relation_test.rb
@@ -2,11 +2,11 @@ require 'test_helper'
class RelationTest < ActiveSupport::TestCase
api_fixtures
-
+
def test_relation_count
assert_equal 8, Relation.count
end
-
+
def test_from_xml_no_id
noid = ""
assert_nothing_raised(OSM::APIBadXMLError) {
@@ -17,7 +17,7 @@ class RelationTest < ActiveSupport::TestCase
}
assert_match /ID is required when updating/, message.message
end
-
+
def test_from_xml_no_changeset_id
nocs = ""
message_create = assert_raise(OSM::APIBadXMLError) {
@@ -29,7 +29,7 @@ class RelationTest < ActiveSupport::TestCase
}
assert_match /Changeset id is missing/, message_update.message
end
-
+
def test_from_xml_no_version
no_version = ""
assert_nothing_raised(OSM::APIBadXMLError) {
@@ -40,7 +40,7 @@ class RelationTest < ActiveSupport::TestCase
}
assert_match /Version is required when updating/, message_update.message
end
-
+
def test_from_xml_id_zero
id_list = ["", "0", "00", "0.0", "a"]
id_list.each do |id|
@@ -54,7 +54,7 @@ class RelationTest < ActiveSupport::TestCase
assert_match /ID of relation cannot be zero when updating/, message_update.message
end
end
-
+
def test_from_xml_no_text
no_text = ""
message_create = assert_raise(OSM::APIBadXMLError) {
@@ -66,7 +66,7 @@ class RelationTest < ActiveSupport::TestCase
}
assert_match /Must specify a string with one or more characters/, message_update.message
end
-
+
def test_from_xml_no_k_v
nokv = ""
message_create = assert_raise(OSM::APIBadXMLError) {
@@ -78,7 +78,7 @@ class RelationTest < ActiveSupport::TestCase
}
assert_match /tag is missing key/, message_update.message
end
-
+
def test_from_xml_no_v
no_v = ""
message_create = assert_raise(OSM::APIBadXMLError) {
@@ -90,7 +90,7 @@ class RelationTest < ActiveSupport::TestCase
}
assert_match /tag is missing value/, message_update.message
end
-
+
def test_from_xml_duplicate_k
dupk = ""
message_create = assert_raise(OSM::APIDuplicateTagsError) {
@@ -131,7 +131,7 @@ class RelationTest < ActiveSupport::TestCase
relation = current_relations(:relation_with_versions)
tags = Relation.find(relation.id).relation_tags.order(:k)
assert_equal 2, tags.count
- assert_equal "testing", tags[0].k
+ 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