Skip to content

Instantly share code, notes, and snippets.

@awesome
Created January 21, 2009 00:25
Show Gist options
  • Save awesome/49768 to your computer and use it in GitHub Desktop.
Save awesome/49768 to your computer and use it in GitHub Desktop.
minitest/unit template
#!/usr/bin/env ruby -w
require 'rubygems'
require 'minitest/unit'
$: << 'lib' << 'test'
require 'awesome'
MiniTest::Unit.autorun
class TestAwesome < MiniTest::Unit::TestCase
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment