Search Apps Documentation Source Content File Folder Download Copy Actions Download

z_get_board_00_filetest.gno

0.68 Kb · 35 lines
 1// PKGPATH: gno.land/r/gnoland/boards2/v1/filetests/z_get_board_00_filetest
 2
 3package z_get_board_00_filetest
 4
 5import (
 6	"testing"
 7
 8	"gno.land/p/gnoland/boards"
 9
10	boards2 "gno.land/r/gnoland/boards2/v1"
11)
12
13const owner address = "g1rp7cmetn27eqlpjpc4vuusf8kaj746tysc0qgh"
14
15var bid boards.ID
16
17func init(cur realm) {
18	testing.SetRealm(testing.NewUserRealm(owner))
19	bid = boards2.CreateBoard(cross(cur), "test123", false, false)
20}
21
22func main(cur realm) {
23	testing.SetRealm(testing.NewCodeRealm("gno.land/r/gnoland/boards2/test"))
24
25	// Calling as a Boards2 sub realm should succeed
26	board, found := boards2.GetBoard(cross(cur), bid)
27	if !found {
28		return
29	}
30
31	println(board.ID == bid)
32}
33
34// Output:
35// true