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
10 lines
188 B
Ruby
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
|