Sha256: 8f34287de6c5e768060e7a0064307974453671a548ee7eca7624294534e2d7d5

Contents?: true

Size: 554 Bytes

Versions: 6

Compression:

Stored size: 554 Bytes

Contents

require 'rubygems'
require 'test/unit'
require 'shoulda'
require 'fileutils'

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'flannel'

class Test::Unit::TestCase
  def assert_fail message
    assert false, message
  end
  
  def clear_dir dirname
    Dir.foreach(dirname) do |f|
      path = File.join(dirname, f)
      if f == '.' or f == '..' then 
	next
      elsif 
	File.directory?(path) then FileUtils.rm_rf(path)
      else 
	FileUtils.rm( path )
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
flannel-0.2.7 test/test_helper.rb
flannel-0.2.6 test/test_helper.rb
flannel-0.2.5 test/test_helper.rb
flannel-0.2.4 test/test_helper.rb
flannel-0.2.3 test/test_helper.rb
flannel-0.2.1 test/test_helper.rb