aboutsummaryrefslogtreecommitdiffstats
path: root/test/visitors/test_depth_first.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-11-29 14:38:45 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2010-11-29 14:38:45 -0800
commit963ca860d579a507effbe818da0c89bf443f33c9 (patch)
tree6d79f4e60753e40b1e96346367a9cd89ebb9d648 /test/visitors/test_depth_first.rb
parentad16c18cc3a7db4b56611b9244140f0b495a1214 (diff)
downloadrails-963ca860d579a507effbe818da0c89bf443f33c9.tar.gz
rails-963ca860d579a507effbe818da0c89bf443f33c9.tar.bz2
rails-963ca860d579a507effbe818da0c89bf443f33c9.zip
adding unary node
Diffstat (limited to 'test/visitors/test_depth_first.rb')
-rw-r--r--test/visitors/test_depth_first.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/visitors/test_depth_first.rb b/test/visitors/test_depth_first.rb
index 32778f7d4b..8d637c7d75 100644
--- a/test/visitors/test_depth_first.rb
+++ b/test/visitors/test_depth_first.rb
@@ -130,6 +130,9 @@ module Arel
@visitor.accept stmt
assert_equal [:a, :b, stmt.columns, :c, stmt], @collector.calls
end
+
+ def test_offset
+ end
end
end
end