Sha256: a5c3fcf493615053225442c5edffd829499ee42de9ae39b7bab774edaee33d27

Contents?: true

Size: 256 Bytes

Versions: 4

Compression:

Stored size: 256 Bytes

Contents

module String::Etest
  def test_camelize
    assert_equal "x", "X".underscore
    assert_equal "xa_la_nder", "XaLaNder".underscore
  end

  def test_underscore
    assert_equal "X", "x".camelize
    assert_equal "XaLaNder", "xa_la_nder".camelize
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
etest-0.6.3 test/etest_string.rb
etest-0.6.2 test/etest_string.rb
etest-0.6.1 test/etest_string.rb
etest-0.6.0 test/etest_string.rb