Sha256: 55eb282e4f15660e28c27654d514c15e94c133b8749205f0404ccb60ff2973b2

Contents?: true

Size: 414 Bytes

Versions: 4

Compression:

Stored size: 414 Bytes

Contents

begin
  if RUBY_VERSION >= '1.9'
    require 'debugger'
    require 'simplecov'
  else
    # require 'debug'
  end  
rescue LoadError
  # ignore
end

require 'minitest/autorun'
require 'minitest/colorize'
require 'tempfile'

require 'bibtex'

module BibTeX
  module Test
    
    class << self
      def fixtures(name)
        File.expand_path("../fixtures/#{name}.bib", __FILE__)
      end
    end
    
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bibtex-ruby-3.0.1 test/helper.rb
bibtex-ruby-3.0.0 test/helper.rb
bibtex-ruby-2.3.4 test/helper.rb
bibtex-ruby-2.3.3 test/helper.rb