# File tests/lexicon.tests.rb, line 121
        def test_35_Grep
                printTestHeader "Lexicon: Grep"
                words = []

                assert_nothing_raised {
                        words = $lexicon.grep( "thing" )
                }
                words.each {|word|
                        assert_match( /^thing/, word )
                }
        end