mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-21 01:30:12 +01:00
Changes you will need to make: * In your environment.rb, you will need to update references to a few files per environment.rb.tmpl * In your environment.rb, you will need to specify the local time zone of the computer that is running your Tracks install. Other notes on my changes: * Modified our code to take advantage of Rails 2.1's slick time zone support. * Upgraded will_paginate for compatibility * Hacked the Selenium on Rails plugin, which has not been updated in some time and does not support Rails 2.1 * Verified that all tests pass on my machine, including Selenium tests -- I'd like confirmation from others, too.
24 lines
618 B
Ruby
24 lines
618 B
Ruby
require 'abstract_unit'
|
|
|
|
class ErbUtilTest < Test::Unit::TestCase
|
|
include ERB::Util
|
|
|
|
ERB::Util::HTML_ESCAPE.each do |given, expected|
|
|
define_method "test_html_escape_#{expected.gsub /\W/, ''}" do
|
|
assert_equal expected, html_escape(given)
|
|
end
|
|
|
|
unless given == '"'
|
|
define_method "test_json_escape_#{expected.gsub /\W/, ''}" do
|
|
assert_equal ERB::Util::JSON_ESCAPE[given], json_escape(given)
|
|
end
|
|
end
|
|
end
|
|
|
|
def test_rest_in_ascii
|
|
(0..127).to_a.map(&:chr).each do |chr|
|
|
next if %w(& " < >).include?(chr)
|
|
assert_equal chr, html_escape(chr)
|
|
end
|
|
end
|
|
end
|