summaryrefslogtreecommitdiff
path: root/test/-ext-/test_bug-3652.rb
blob: 0e4d658081a45b630985b562523ac568efb210d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'test/unit'
require '-test-/bug-3652/bug'

class Test_BUG_3652 < Test::Unit::TestCase
  def test_block_call_id
    bug3652 = '[ruby-core:31615]'
    s = "123456789012345678901234"
    assert_equal(s, Bug.str_resize(127, s), bug3652)
    s = "123456789"
    assert_equal(s, Bug.str_resize(127, s), bug3652)
  end
end