quick-note/note/note_test.go

13 lines
180 B
Go

package note
import "testing"
func TestHelloWorld(t *testing.T) {
n := NewNote(`Round the ragged rocks
the rabid rascal ran.
How is a raven like a writing desk?
`)
t.Log(n)
}