Sha256: 192e3b072ad21a8ad895ce5599aa67aa7c5d7c6b7f4115f5a1029ea8fe6302ef

Contents?: true

Size: 528 Bytes

Versions: 20

Compression:

Stored size: 528 Bytes

Contents

begin
  require 'simplecov'
  require 'coveralls' if ENV['CI']
rescue LoadError
  # ignore
end

begin
  if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
    require 'rubinius-debugger'
  else
    require 'debugger'
  end
rescue LoadError
  # ignore
end

require 'minitest/autorun'
require 'minitest/ansi'

Minitest::ANSI.use!

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

20 entries across 20 versions & 1 rubygems

Version Path
bibtex-ruby-4.0.14 test/helper.rb
bibtex-ruby-4.0.13 test/helper.rb
bibtex-ruby-4.0.12 test/helper.rb
bibtex-ruby-4.0.11 test/helper.rb
bibtex-ruby-4.0.10 test/helper.rb
bibtex-ruby-4.0.9 test/helper.rb
bibtex-ruby-4.0.8 test/helper.rb
bibtex-ruby-4.0.7 test/helper.rb
bibtex-ruby-4.0.6 test/helper.rb
bibtex-ruby-4.0.5 test/helper.rb
bibtex-ruby-4.0.4 test/helper.rb
bibtex-ruby-4.0.3 test/helper.rb
bibtex-ruby-4.0.2 test/helper.rb
bibtex-ruby-4.0.1 test/helper.rb
bibtex-ruby-4.0.0 test/helper.rb
bibtex-ruby-3.1.6 test/helper.rb
bibtex-ruby-3.1.5 test/helper.rb
bibtex-ruby-3.1.4 test/helper.rb
bibtex-ruby-3.1.3 test/helper.rb
bibtex-ruby-3.1.2 test/helper.rb