# File lib/big_record/fixtures.rb, line 867
      def bigrecord_fixtures(*bigrecord_table_names)
        if bigrecord_table_names.first == :all
          bigrecord_table_names = Dir["#{fixture_path}/*.yml"] + Dir["#{fixture_path}/*.csv"]
          bigrecord_table_names.map! { |f| File.basename(f).split('.')[0..-2].join('.') }
        else
          bigrecord_table_names = bigrecord_table_names.flatten.map { |n| n.to_s }
        end

        self.bigrecord_fixture_table_names |= bigrecord_table_names
        require_bigrecord_fixture_classes(bigrecord_table_names)
        setup_bigrecord_fixture_accessors(bigrecord_table_names)
      end