module Jeweler::Generator::MinitestMixin

def self.extended(generator)

def self.extended(generator)
  generator.development_dependencies << ['minitest', '>= 0']
end

def default_task

def default_task
  'test'
end

def feature_support_extend

def feature_support_extend
  'MiniTest::Assertions'
end

def feature_support_require

def feature_support_require
  'minitest/unit'
end

def test_dir

def test_dir
  'test'
end

def test_filename

def test_filename
  "test_#{require_name}.rb"
end

def test_helper_filename

def test_helper_filename
  'helper.rb'
end

def test_pattern

def test_pattern
  'test/**/test_*.rb'
end

def test_task

def test_task
  'test'
end