X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c9a171c74581e0eb80794e2c9ed92e1b8faffa42..6b8beb7d1a0b5dfdf4f7c8409ee814f9cf870cfb:/test/unit/old_node_test.rb diff --git a/test/unit/old_node_test.rb b/test/unit/old_node_test.rb index 85c2037c2..10cb23900 100644 --- a/test/unit/old_node_test.rb +++ b/test/unit/old_node_test.rb @@ -1,12 +1,12 @@ require File.dirname(__FILE__) + '/../test_helper' -class OldNodeTest < Test::Unit::TestCase - fixtures :current_nodes, :users, :current_node_tags, :nodes, :node_tags - set_fixture_class :current_nodes => :Node - set_fixture_class :nodes => :OldNode - set_fixture_class :node_tags => :OldNodeTag - set_fixture_class :current_node_tags => :NodeTag - +class OldNodeTest < ActiveSupport::TestCase + api_fixtures + + def test_old_node_count + assert_equal 19, OldNode.count + end + def test_node_too_far_north invalid_node_test(:node_too_far_north) end @@ -51,12 +51,12 @@ class OldNodeTest < Test::Unit::TestCase dbnode = Node.find(node.id) assert_equal dbnode.lat, node.latitude.to_f/SCALE assert_equal dbnode.lon, node.longitude.to_f/SCALE - assert_equal dbnode.user_id, node.user_id + assert_equal dbnode.changeset_id, node.changeset_id assert_equal dbnode.version, node.version assert_equal dbnode.visible, node.visible assert_equal dbnode.timestamp, node.timestamp #assert_equal node.tile, QuadTile.tile_for_point(nodes(nod).lat, nodes(nod).lon) - assert_valid node + assert node.valid? end # This helpermethod will check to make sure that a node is outwith the world, @@ -67,7 +67,7 @@ class OldNodeTest < Test::Unit::TestCase dbnode = Node.find(node.id) assert_equal dbnode.lat, node.latitude.to_f/SCALE assert_equal dbnode.lon, node.longitude.to_f/SCALE - assert_equal dbnode.user_id, node.user_id + assert_equal dbnode.changeset_id, node.changeset_id assert_equal dbnode.version, node.version assert_equal dbnode.visible, node.visible assert_equal dbnode.timestamp, node.timestamp