Sha256: 312ecc074fbb2c01ac3a30a32cd13984e09a920e4cf912505d4d32826be9d4e7
Contents?: true
Size: 655 Bytes
Versions: 9
Compression:
Stored size: 655 Bytes
Contents
class Bueller class Generator module MinitestMixin def self.extended(generator) generator.development_dependencies << 'minitest' end def default_task 'test' end def feature_support_require 'minitest/unit' end def feature_support_extend 'MiniTest::Assertions' end def test_dir 'test' end def test_task 'test' end def test_pattern 'test/**/test_*.rb' end def test_filename "test_#{require_name}.rb" end def test_helper_filename "helper.rb" end end end end
Version data entries
9 entries across 9 versions & 1 rubygems