module MicroTest
Public Class Methods
natural_names()
click to toggle source
Output naturalized test names instead of just method names.
# File lib/microtest.rb, line 6 def self.natural_names @natural_names ||= nil end
natural_names=(boolean)
click to toggle source
Set flag to output naturalized test names instead of just method names.
# File lib/microtest.rb, line 13 def self.natural_names=(boolean) @natural_names = !!boolean end