openstreetmap-website/test/unit/way_node_test.rb
Thomas Wood 76b6d7d876 Tests for [17838]
Why is our testing fixtures such a mess? It took me half an hour to find a useable node. And I'm still not sure if it's ok, since I want to get to bed. kthxbye
2009-09-29 03:58:33 +00:00

10 lines
188 B
Ruby

require File.dirname(__FILE__) + '/../test_helper'
class WayNodeTest < ActiveSupport::TestCase
api_fixtures
def test_way_nodes_count
assert_equal 6, WayNode.count
end
end