Skip to content

Instantly share code, notes, and snippets.

@bitaxis
bitaxis / gist:1024102
Created June 14, 2011 00:43
Military Alphabet
A - Alpha
B - Bravo
C - Charlie
D - Delta
E - Echo
F - Foxtrot
G - Golf
H - Hotel
I - India
J - Juliet
@bitaxis
bitaxis / assert_false.rb
Created November 10, 2009 23:16
assert_false method
def assert_false(boolean, message=nil)
_wrap_assertion do
assert_block("assert_false should not be called with a block.") { !block_given? }
assert_block(build_message(message, "<?> is not false.", boolean)) { boolean == false }
end
end