Skip to content
This repository was archived by the owner on Nov 16, 2018. It is now read-only.

Using MiniTest

mhennemeyer edited this page Aug 13, 2010 · 14 revisions

You can also use MiniTest’s assert methods by defining your own World block:

require 'minitest/unit'

World do |world|
  world.extend(MiniTest::Assertions)
  world
end

Clone this wiki locally