Sha256: 478dbd0f552edb470cc054eda2b31981d73889099c39e98024d6f023efe9d2dc
Contents?: true
Size: 753 Bytes
Versions: 3
Compression:
Stored size: 753 Bytes
Contents
# -*- encoding : utf-8 -*- require 'rubygems' require 'minitest/autorun' $LOAD_PATH.unshift File.expand_path('../../lib') require 'mocha/setup' require 'shell_tools' Dir.glob(File.expand_path('../../support/**/*.rb', __FILE__)).each do |filename| require_relative filename end # Setup code coverage, first ################################################### require 'codeclimate-test-reporter' SimpleCov.add_filter 'test' SimpleCov.start CodeClimate::TestReporter.start # Load and configure the real code ############################################# require 'gitdocs' Gitdocs::Initializer.root_dirname = '/tmp/gitdocs' Gitdocs::Initializer.database = ':memory:' GitFactory.working_directory = File.expand_path('../../../tmp/unit', __FILE__)
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
gitdocs-0.6.2 | test/unit/test_helper.rb |
gitdocs-0.6.1 | test/unit/test_helper.rb |
gitdocs-0.6.0 | test/unit/test_helper.rb |