Sha256: c3ea08eaa299c1edda3cea07f3bc7069133ee1453b74e18345c08ae060e689fa

Contents?: true

Size: 706 Bytes

Versions: 1

Compression:

Stored size: 706 Bytes

Contents

class Jeweler
  class Generator
    module TestspecMixin
      def self.extended(generator)
        generator.development_dependencies << ["test-spec", ">= 0"]
      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 another_change

      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

1 entries across 1 versions & 1 rubygems

Version Path
mercurial-ruby-0.3.0 test/fixtures/test-repo/testspec_mixin_new.rb