Search Apps Documentation Source Content File Folder Download Copy Actions Download State String Boolean Number Struct Map Slice Pointer Function Closure Reference Nil Package Type Interface Unknown

z_hub_6_b_filetest.gno

0.77 Kb · 33 lines
 1// PKGPATH: gno.land/r/gnoland/boards2/v1/filetests/z_hub_6_b_filetest
 2
 3// Test getting flags from an unflagged comment
 4package z_hub_6_b_filetest
 5
 6import (
 7	"testing"
 8
 9	"gno.land/p/gnoland/boards"
10
11	boards2 "gno.land/r/gnoland/boards2/v1"
12)
13
14var (
15	boardID   boards.ID
16	threadID  boards.ID
17	commentID boards.ID
18)
19
20func init(cur realm) {
21	testing.SetRealm(testing.NewUserRealm("g1rp7cmetn27eqlpjpc4vuusf8kaj746tysc0qgh"))
22	boardID = boards2.CreateBoard(cross(cur), "test123", false, false)
23	threadID = boards2.CreateThread(cross(cur), boardID, "Title", "Body")
24	commentID = boards2.CreateReply(cross(cur), boardID, threadID, 0, "Comment")
25}
26
27func main(cur realm) {
28	flags := boards2.GetFlags(uint64(boardID), uint64(threadID), uint64(commentID), 0, 1)
29	println(len(flags))
30}
31
32// Output:
33// 0