z_create_reply_02_filetest.gno
0.60 Kb · 29 lines
1// PKGPATH: gno.land/r/gnoland/boards2/v0/filetests/z_create_reply_02_filetest
2
3package z_create_reply_02_filetest
4
5import (
6 "testing"
7
8 "gno.land/p/gnoland/boards/v0"
9
10 boards2 "gno.land/r/gnoland/boards2/v0"
11)
12
13const owner address = "g1skl80cuz8zq3lul9pgz5pc35l2pfzgxgfpsqkx"
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.NewUserRealm(owner))
24
25 boards2.CreateReply(cross(cur), bid, 404, 0, "comment")
26}
27
28// Error:
29// thread does not exist with ID: 404