Skip to content

Instantly share code, notes, and snippets.

@tomas-stefano
Created May 20, 2010 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomas-stefano/408084 to your computer and use it in GitHub Desktop.
Save tomas-stefano/408084 to your computer and use it in GitHub Desktop.
Example of Morpheus Test::Unit DSL
class MyGem < Morpheus::Base
# With block
#
test_unit do
pattern 'test/test*.rb'
verbose true
warning false
end
# Without a Block
#
test_unit :test, :pattern => 'test/test*.rb', :verbose => true, :warning => false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment