Skip to content

Instantly share code, notes, and snippets.

@Watson1978
Created March 14, 2011 12:40
Show Gist options
  • Save Watson1978/869064 to your computer and use it in GitHub Desktop.
Save Watson1978/869064 to your computer and use it in GitHub Desktop.
require 'test/unit/assertions.rb'
include Test::Unit::Assertions
# Array.new should return nil when break from block.
ary = Array.new(3) do |i|
break if i == 2
i.to_s
end
assert_nil(ary)
puts :ok
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment