Cross package maker. DEB/RPM generation or conversion. Derived from jordansissel/fpm.

⌈⌋ ⎇ branch:  cross package maker


Artifact [0eae07b47d]

Artifact 0eae07b47d7383810bf55ffd48e6e5077ed0fdc2:

  • File test/testing.rb — part of check-in [1e5dbadf47] at 2012-02-23 07:59:31 on branch trunk — - start major refactoring. Design first, this time. With tests. (user: jls@semicomplete.com size: 358)

require "rubygems"
require "minitest/spec"

# Add '../lib' to the require path.
$: << File.join(File.dirname(__FILE__), "..", "lib")

# I don't really like monkeypatching, but whatever, this is probably better
# than overriding the 'describe' method.
class MiniTest::Spec
  class << self
    # 'it' sounds wrong, call it 'test'
    alias :test :it
  end
end