aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_string.rb
blob: 6f8692367ae0bd24e91842e7184d0741d931c528 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'testing_env'
require 'extend/string'

class StringTest < Test::Unit::TestCase
  def test_undent
    undented = <<-EOS.undent
    hi
....my friend over
    there
    EOS
    assert undented == "hi\nmy friend over\nthere\n"
  end
end