From 5dd7ca65fdb90d6ffe53790abf1fe5a29a66675e Mon Sep 17 00:00:00 2001 From: Kornelius Kalnbach Date: Fri, 19 Aug 2011 04:43:37 +0200 Subject: rename CaseIgnoringWordList to WordList::CaseIgnoring --- test/unit/word_list.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/unit/word_list.rb b/test/unit/word_list.rb index 2d02d66..40d5a26 100644 --- a/test/unit/word_list.rb +++ b/test/unit/word_list.rb @@ -39,13 +39,13 @@ class WordListTest < Test::Unit::TestCase end def test_case_ignoring_word_list - list = CaseIgnoringWordList.new(:ident).add(['foobar'], :reserved) + list = WordList::CaseIgnoring.new(:ident).add(['foobar'], :reserved) assert_equal :ident, list['foo'] assert_equal :reserved, list['foobar'] assert_equal :reserved, list['FooBar'] assert_equal 1, list.size - list = CaseIgnoringWordList.new(:ident).add(['FooBar'], :reserved) + list = WordList::CaseIgnoring.new(:ident).add(['FooBar'], :reserved) assert_equal :ident, list['foo'] assert_equal :reserved, list['foobar'] assert_equal :reserved, list['FooBar'] -- cgit v1.2.1