Sha256: 6278e44f2fb3b8e1a00532d7b9d569cd3a964637031d3668026348120e246833
Contents?: true
Size: 662 Bytes
Versions: 9
Compression:
Stored size: 662 Bytes
Contents
class Bueller class Generator module ShouldaMixin def self.extended(generator) generator.development_dependencies << 'shoulda' 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 "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