跳至内容 跳至搜索

添加对名为文件夹的示例文件的简单访问。 File 夹具是存储在 ActiveSupport::TestCase.file_fixture_path 中的普通文件。

File 夹具表示为 Pathname 对象。 这使得提取特定信息变得容易

file_fixture("example.txt").read # get the file's content
file_fixture("example.mp3").size # get the file size
方法
F

实例公有方法

file_fixture(fixture_name)

返回名为 fixture_name 的夹具文件的 Pathname

如果找不到 fixture_name,则引发 ArgumentError

# File activesupport/lib/active_support/testing/file_fixtures.rb, line 26
def file_fixture(fixture_name)
  path = Pathname.new(File.join(file_fixture_path, fixture_name))

  if path.exist?
    path
  else
    msg = "the directory '%s' does not contain a file named '%s'"
    raise ArgumentError, msg % [file_fixture_path, fixture_name]
  end
end