Sha256: 16d8345e1acb8a37953cc573842a721a6ae74e5874c78ff6850a088a1b114797

Contents?: true

Size: 326 Bytes

Versions: 11

Compression:

Stored size: 326 Bytes

Contents

#!/usr/bin/env ruby

require 'test/unit'
require 'rake/clean'

class TestClean < Test::Unit::TestCase
  def test_clean
    assert Task['clean'], "Should define clean"
    assert Task['clobber'], "Should define clobber"
    assert Task['clobber'].prerequisites.include?("clean"),
      "Clobber should require clean"
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rake-0.4.10 test/testclean.rb
rake-0.4.14 test/testclean.rb
rake-0.4.12 test/testclean.rb
rake-0.4.8 test/testclean.rb
rake-0.4.9 test/testclean.rb
rake-0.4.11 test/testclean.rb
rake-0.4.13 test/testclean.rb
rake-0.4.15 test/testclean.rb
rake-0.5.0 test/testclean.rb
rake-0.5.3 test/testclean.rb
rake-0.5.4 test/testclean.rb