method

fixtures_path

fixtures_path()
public

No documentation available.

# File activerecord/lib/active_record/tasks/database_tasks.rb, line 62
      def fixtures_path
        @fixtures_path ||= if ENV['FIXTURES_PATH']
                             File.join(root, ENV['FIXTURES_PATH'])
                           else
                             File.join(root, 'test', 'fixtures')
                           end
      end