Sha256: bf31f15df0873b457746a89da799e46a12f9767e28ed6ca33b331f3652224777

Contents?: true

Size: 218 Bytes

Versions: 5

Compression:

Stored size: 218 Bytes

Contents

require 'facets/string/indent'
require 'test/unit'

class TC_String_Indent < Test::Unit::TestCase

  def test_indent
    a = "xyz".indent(4)
    assert_equal( '    ', a[0..3] )
    # Need to expand on this
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
facets-2.7.0 test/core/string/test_indent.rb
facets-2.6.0 test/core/string/test_indent.rb
facets-2.5.0 test/core/string/test_indent.rb
facets-2.5.1 test/core/string/test_indent.rb
facets-2.5.2 test/core/string/test_indent.rb