technicalpickles/jeweler

View on GitHub
lib/jeweler/generator/testunit_mixin.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Jeweler
  class Generator
    module TestunitMixin
      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