quick-note/note/note_test.go

13 lines
180 B
Go
Raw Permalink Normal View History

2022-02-25 08:47:23 +00:00
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)
}