a5e08f7bcc
I installed the rails_xss plugin, for the main purpose of seeing what will break with Rails 3.0 (where the behaviour of the plugin is the default). I think I've fixed everything, but let me know if you see stuff that is HTML-escaped, which shouldn't be. As a side benefit, we now use Erubis, rather than ERB, to render templates. They tell me it's faster ...
30 lines
622 B
Ruby
30 lines
622 B
Ruby
##
|
|
## $Release: 2.6.5 $
|
|
## copyright(c) 2006-2009 kuwata-lab.com all rights reserved.
|
|
##
|
|
|
|
|
|
unless defined?(TESTDIR)
|
|
TESTDIR = File.dirname(__FILE__)
|
|
LIBDIR = TESTDIR == '.' ? '../lib' : File.dirname(TESTDIR) + '/lib'
|
|
$: << TESTDIR
|
|
$: << LIBDIR
|
|
end
|
|
|
|
|
|
require 'test/unit'
|
|
#require 'test/unit/ui/console/testrunner'
|
|
require 'assert-text-equal'
|
|
require 'yaml'
|
|
require 'testutil'
|
|
require 'erubis'
|
|
|
|
|
|
if $0 == __FILE__
|
|
require "#{TESTDIR}/test-erubis.rb"
|
|
require "#{TESTDIR}/test-engines.rb"
|
|
require "#{TESTDIR}/test-enhancers.rb"
|
|
require "#{TESTDIR}/test-main.rb"
|
|
require "#{TESTDIR}/test-users-guide.rb"
|
|
end
|