Test get_nodes_undelete methods of the OldWay model

This commit is contained in:
Tom Hughes 2013-12-05 17:49:06 +00:00
parent 6670de16a1
commit c866d28fd4
2 changed files with 16 additions and 4 deletions

View file

@ -105,12 +105,10 @@ class OldWay < ActiveRecord::Base
# (i.e. is it visible? are we actually reverting to an earlier version?)
def get_nodes_undelete
points = []
self.nds.each do |n|
self.nds.collect do |n|
node = Node.find(n)
points << [node.lon, node.lat, n, node.version, node.tags_as_hash, node.visible]
[node.lon, node.lat, n, node.version, node.tags_as_hash, node.visible]
end
points
end
def get_nodes_revert(timestamp)