diff --git a/string_test.go b/string_test.go new file mode 100644 index 0000000..2542c1f --- /dev/null +++ b/string_test.go @@ -0,0 +1,14 @@ +package gocat + +import ( + "github.com/stretchr/testify/assert" + "testing" +) + +func TestBackquote(t *testing.T) { + assert.Equal(t, "\n1\n2\n3\n", ` +1 +2 +3 +`) +}