github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/r/demo/echo/echo_test.gno (about)

     1  package echo
     2  
     3  import (
     4  	"testing"
     5  )
     6  
     7  func Test(t *testing.T) {
     8  	if Render("aa") != "aa" {
     9  		t.Fail()
    10  	}
    11  	if Render("") != "" {
    12  		t.Fail()
    13  	}
    14  }