Flowdock
method

read_fixture_files

Importance_0
v4.0.2 - Show latest stable - 0 notes - Class: FixtureSet
read_fixture_files() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/fixtures.rb, line 641
      def read_fixture_files
        yaml_files = Dir["#{@path}/{**,*}/*.yml"].select { |f|
          ::File.file?(f)
        } + [yaml_file_path]

        yaml_files.each do |file|
          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
Register or log in to add new notes.