-require 'test_helper'
+require "test_helper"
class OldWayTest < ActiveSupport::TestCase
api_fixtures
way = ways(:way_with_versions_v3)
nodes = OldWay.find(way.id).get_nodes_undelete
assert_equal 2, nodes.size
- assert_equal [1.0, 1.0, 15, 4, {"testing" => "added in node version 3", "testing two" => "modified in node version 4"}, true], nodes[0]
- assert_equal [3.0, 3.0, 3, 1, {"test" => "yes"}, true], nodes[1]
+ assert_equal [1.0, 1.0, 15, 4, { "testing" => "added in node version 3", "testing two" => "modified in node version 4" }, true], nodes[0]
+ assert_equal [3.0, 3.0, 3, 1, { "test" => "yes" }, true], nodes[1]
way = ways(:way_with_redacted_versions_v2)
nodes = OldWay.find(way.id).get_nodes_undelete
assert_equal 2, nodes.size
- assert_equal [3.0, 3.0, 3, 1, {"test" => "yes"}, true], nodes[0]
- assert_equal [2.0, 2.0, 2, 1, {"testused" => "yes"}, false], nodes[1]
+ assert_equal [3.0, 3.0, 3, 1, { "test" => "yes" }, true], nodes[0]
+ assert_equal [2.0, 2.0, 2, 1, { "testused" => "yes" }, false], nodes[1]
end
end