Search Apps Documentation Source Content File Folder Download Copy

z_0_d_filetest.gno

0.41 Kb ยท 24 lines
 1// PKGPATH: gno.land/r/demo/boards_test
 2package boards_test
 3
 4// SEND: 200000000ugnot
 5
 6import (
 7	"gno.land/r/demo/boards"
 8	"gno.land/r/demo/users"
 9)
10
11var bid boards.BoardID
12
13func init() {
14	users.Register("", "gnouser", "my profile")
15	bid = boards.CreateBoard("test_board")
16	boards.CreateReply(bid, 0, 0, "Reply of the second post")
17}
18
19func main() {
20	println(boards.Render("test_board"))
21}
22
23// Error:
24// thread not exist