文件操作 - soundex_test.rb
返回文件管理
返回主菜单
删除本文件
文件: /opt/puppetlabs/puppet/lib/ruby/vendor_gems/gems/text-1.3.1/test/soundex_test.rb
编辑文件内容
require_relative "./test_helper" require "text/soundex" require 'yaml' class SoundexTest < Test::Unit::TestCase def test_cases YAML.load(data_file('soundex.yml')).each do |input, expected_output| assert_equal expected_output, Text::Soundex.soundex(input) end end def test_should_return_nil_for_empty_string assert_nil Text::Soundex.soundex("") end def test_should_return_nil_for_string_with_no_letters assert_nil Text::Soundex.soundex("!@#123") end end
修改文件时间
将文件时间修改为当前时间的前一年
删除文件