diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-11-29 14:38:45 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-11-29 14:38:45 -0800 |
commit | 963ca860d579a507effbe818da0c89bf443f33c9 (patch) | |
tree | 6d79f4e60753e40b1e96346367a9cd89ebb9d648 /test/visitors | |
parent | ad16c18cc3a7db4b56611b9244140f0b495a1214 (diff) | |
download | rails-963ca860d579a507effbe818da0c89bf443f33c9.tar.gz rails-963ca860d579a507effbe818da0c89bf443f33c9.tar.bz2 rails-963ca860d579a507effbe818da0c89bf443f33c9.zip |
adding unary node
Diffstat (limited to 'test/visitors')
-rw-r--r-- | test/visitors/test_depth_first.rb | 3 |
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 |