文件操作 - metaphone_test.rb
返回文件管理
返回主菜单
删除本文件
文件: /opt/puppetlabs/puppet/lib/ruby/vendor_gems/gems/text-1.3.1/test/metaphone_test.rb
编辑文件内容
require_relative "./test_helper" require "text/metaphone" require 'yaml' class MetaphoneTest < Test::Unit::TestCase def test_cases YAML.load(data_file('metaphone.yml')).each do |input, expected_output| assert_equal expected_output, Text::Metaphone.metaphone(input) end end def test_cases_for_buggy_implementation YAML.load(data_file('metaphone_buggy.yml')).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
修改文件时间
将文件时间修改为当前时间的前一年
删除文件