method
read_fixture_files
v4.2.7 -
Show latest stable
- Class:
ActiveRecord::FixtureSet
read_fixture_files(path, model_class)private
No documentation available.
# File activerecord/lib/active_record/fixtures.rb, line 753
def read_fixture_files(path, model_class)
yaml_files = Dir["#{path}/{**,*}/*.yml"].select { |f|
::File.file?(f)
} + [yaml_file_path(path)]
yaml_files.each_with_object({}) do |file, fixtures|
FixtureSet::File.open(file) do |fh|
fh.each do |fixture_name, row|
fixtures[fixture_name] = ActiveRecord::Fixture.new(row, model_class)
end
end
end
end