test/test_htmlutils.rb in review-2.3.0 vs test/test_htmlutils.rb in review-2.4.0
- old
+ new
@@ -1,6 +1,5 @@
-# -*- coding: utf-8 -*-
require 'test_helper'
require 'review/htmlutils'
class HTMLUtilsTest < Test::Unit::TestCase
include ReVIEW::HTMLUtils
@@ -44,7 +43,6 @@
assert_equal 'id_0123a-b-c_x.y.z', normalize_id('0123a-b-c_x.y.z')
assert_equal 'id_.', normalize_id('.')
assert_equal 'id__E3_81_82', normalize_id('あ')
assert_equal 'id_-___3B', normalize_id(' _;')
end
-
end