Sha256: 013f8e89e42d37946388f582b5b7e3f9a186a365c422aa2651faf11f63d9656b

Contents?: true

Size: 411 Bytes

Versions: 6

Compression:

Stored size: 411 Bytes

Contents

$LOAD_PATH << File.expand_path('../lib', __FILE__)

require 'minitest/autorun'
require 'bindex'

current_directory = File.dirname(File.expand_path(__FILE__))

# Fixtures are plain classes that respond to #call.
Dir["#{current_directory}/fixtures/**/*.rb"].each do |fixture|
  require fixture
end

class BaseTest < MiniTest::Test
  def self.test(name, &block)
    define_method("test_#{name}", &block)
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bindex-0.5.0 test/test_helper.rb
bindex-0.4.0 test/test_helper.rb
bindex-0.3.0 test/test_helper.rb
bindex-0.2.0 test/test_helper.rb
bindex-0.1.1 test/test_helper.rb
bindex-0.1.0 test/test_helper.rb