diff options
Diffstat (limited to 'test/scanners/ruby/nested-heredoc.in.rb')
-rwxr-xr-x | test/scanners/ruby/nested-heredoc.in.rb | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/test/scanners/ruby/nested-heredoc.in.rb b/test/scanners/ruby/nested-heredoc.in.rb deleted file mode 100755 index 3059e48..0000000 --- a/test/scanners/ruby/nested-heredoc.in.rb +++ /dev/null @@ -1,27 +0,0 @@ -p "#{<<'END'.strip.reverse}\ -First -END -Second" - -p <<`one` ; p "#{<<two}" -1 -one -2 -two - -this.should.be.plain - -# from Rails -unless new_record? - connection.delete <<-end_sql, "#{self.class.name} Destroy" - DELETE FROM #{self.class.table_name} - WHERE #{self.class.primary_key} = #{quoted_id} - end_sql -end - -p <<this -but it may break #{<<that} -code. -that -this -that.should.be.plain
\ No newline at end of file |