Sha256: 4a3f655a23b000c5104f8bd62444fea5f1f3a3c9b8ee574ea9b02e113167375e
Contents?: true
Size: 670 Bytes
Versions: 9
Compression:
Stored size: 670 Bytes
Contents
class Bueller class Generator module TestspecMixin def self.extended(generator) generator.development_dependencies << 'test-spec' end def default_task 'test' end def feature_support_require 'test/unit/assertions' end def feature_support_extend 'Test::Unit::Assertions' end def test_dir 'test' end def test_task 'test' end def test_pattern 'test/**/*_test.rb' end def test_filename "#{require_name}_test.rb" end def test_helper_filename "test_helper.rb" end end end end
Version data entries
9 entries across 9 versions & 1 rubygems