# File 'lib/katachi/minitest.rb', line 8defassert_shape(expected,actual)assertKatachi.compare(shape:expected,value:actual).match?,"Expected #{actual} to match #{expected}"end
#refute_shape(expected, actual) ⇒ Object
12
13
14
# File 'lib/katachi/minitest.rb', line 12defrefute_shape(expected,actual)refuteKatachi.compare(shape:expected,value:actual).match?,"Expected #{actual} not to match #{expected}"end