Skip to content

Instantly share code, notes, and snippets.

@rudicode
rudicode / minitest_assertions.rb
Created November 8, 2012 20:32 — forked from kotp/minitest_assertions.rb
MiniTest Assertions and Specs
#!/usr/bin/env ruby
# require 'test/unit'
require 'minitest/spec'
puts "== Spec Style"
columns = 3
column_count = 1
MiniTest::Spec.methods.sort.each do |method|
if method.to_s =~ /wont/ or method.to_s =~ /must/