mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-21 10:00:09 -04:00
18 lines
338 B
Go
18 lines
338 B
Go
// Copyright IBM Corp. 2014, 2026
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package logging
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestIndent(t *testing.T) {
|
|
s := "hello\n world\ngoodbye\n moon"
|
|
got := Indent(s)
|
|
want := " hello\n world\n goodbye\n moon"
|
|
|
|
if got != want {
|
|
t.Errorf("wrong result\ngot:\n%s\n\nwant:\n%s", got, want)
|
|
}
|
|
}
|