Skip to content

Commit

Permalink
Change a TODO comment into an actual todo()
Browse files Browse the repository at this point in the history
  • Loading branch information
treed committed Jul 27, 2009
1 parent 0d96626 commit ecc08a4
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions t/range/each.t
@@ -1,6 +1,6 @@
require 'Test'
include Test
plan 3
plan 4


discrete_range = Range.new(-3, -1)
Expand All @@ -11,10 +11,14 @@ discrete_range.each() do |i|
end


# TODO "test range over ascii chars"
skip "test range over ascii chars", "14"
#res = ['a','b','c']
#test = []
#discrete_range = Range.new('a','c')
#discrete_range.each() do |c|
# p c
# test += c
#end
#
#is test, res, "Range.each with String"

# TODO "test range over custom objects"

0 comments on commit ecc08a4

Please sign in to comment.