]> git.openstreetmap.org Git - rails.git/blobdiff - test/unit/way_tag_test.rb
Give a nice error message when parsing the nwr tags and they are missing the k and...
[rails.git] / test / unit / way_tag_test.rb
index 018263da11624800c7fda66ee3dc58e558aa3be1..f5a931f6a322389744c93ff0e22254ba8ab36616 100644 (file)
@@ -1,6 +1,6 @@
 require File.dirname(__FILE__) + '/../test_helper'
 
-class WayTagTest < Test::Unit::TestCase
+class WayTagTest < ActiveSupport::TestCase
   api_fixtures
   
   def test_way_tag_count
@@ -14,7 +14,7 @@ class WayTagTest < Test::Unit::TestCase
       tag.id = current_way_tags(:t1).id
       tag.k = key*i
       tag.v = current_way_tags(:t1).v
-      assert_valid tag
+      assert tag.valid?
     end
   end
   
@@ -25,7 +25,7 @@ class WayTagTest < Test::Unit::TestCase
       tag.id = current_way_tags(:t1).id
       tag.k = "k"
       tag.v = val*i
-      assert_valid tag
+      assert tag.valid?
     end
   end