Sha256: 862ccad04ae6ff902a190016ca7fd3d728239b5cb6b1fcb8f8509ad1625262f8
Contents?: true
Size: 1.38 KB
Versions: 7
Compression:
Stored size: 1.38 KB
Contents
require File.join(File.dirname(__FILE__), 'preamble') require "text/metaphone" require 'yaml' class MetaphoneTest < Test::Unit::TestCase def test_cases YAML.load(File.read(File.rel('data', 'metaphone.txt'))).each do |input, expected_output| assert_equal expected_output, Text::Metaphone.metaphone(input) end end def test_cases_for_buggy_implementation YAML.load(File.read(File.rel('data', 'metaphone_buggy.txt'))).each do |input, expected_output| assert_equal expected_output, Text::Metaphone.metaphone(input, :buggy=>true) end end def test_junk assert_equal Text::Metaphone.metaphone('foobar'), Text::Metaphone.metaphone('%^@#$^f%^&o%^o@b#a@#r%^^&') assert_equal Text::Metaphone.metaphone('foobar', :buggy=>true), Text::Metaphone.metaphone('%^@#$^f%^&o%^o@b#a@#r%^^&', :buggy=>true) end def test_caps assert_equal Text::Metaphone.metaphone('foobar'), Text::Metaphone.metaphone('FOOBAR') assert_equal Text::Metaphone.metaphone('foobar', :buggy=>true), Text::Metaphone.metaphone('FOOBAR', :buggy=>true) end def test_string assert_equal 'F BR BS', Text::Metaphone.metaphone('foo bar baz') assert_equal 'N WT', Text::Metaphone.metaphone('gnu what') assert_equal 'F BR BS', Text::Metaphone.metaphone('foo bar baz', :buggy=>true) assert_equal 'N WT', Text::Metaphone.metaphone('gnu what', :buggy=>true) end end
Version data entries
7 entries across 7 versions & 1 rubygems