Remove trailing whitespace.

This commit is contained in:
Mark H. Wilkinson
2008-08-18 20:32:30 +01:00
parent 7acdac2a1c
commit 7eeb895192
4 changed files with 45 additions and 56 deletions
-8
View File
@@ -58,11 +58,3 @@ require 'liquid/module_ex'
# Load all the tags of the standard library
#
Dir[File.dirname(__FILE__) + '/liquid/tags/*.rb'].each { |f| require f }
-3
View File
@@ -1,7 +1,6 @@
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/helper'
module MoneyFilter
def money(input)
sprintf(' %d$ ', input)
@@ -18,7 +17,6 @@ module CanadianMoneyFilter
end
end
class FiltersTest < Test::Unit::TestCase
include Liquid
@@ -94,5 +92,4 @@ class FiltersInTemplate < Test::Unit::TestCase
assert_equal " 1000$ CAD ", Template.parse("{{1000 | money}}").render(nil, CanadianMoneyFilter)
assert_equal " 1000$ CAD ", Template.parse("{{1000 | money}}").render(nil, [CanadianMoneyFilter])
end
end