package main import ( "std" "strings" "testing" boards2 "gno.land/r/gnoland/boards2/v1" ) const ( owner = std.Address("g16jpf0puufcpcjkph5nxueec8etpcldz7zwgydq") // @devx admin = std.Address("g1us8428u2a5satrlxzagqqa5m6vmuze025anjlj") // @test2 title = "Test Thread" body = "Test body" path = "test-board/1" ) var ( bid boards2.BoardID pid boards2.PostID ) func init() { testing.SetRealm(std.NewUserRealm(owner)) bid = boards2.CreateBoard(cross, "test-board", false) pid = boards2.CreateThread(cross, bid, "Foo", "bar") // Invite a member using a role with permission to edit threads boards2.InviteMember(cross, bid, admin, boards2.RoleAdmin) } func main() { testing.SetRealm(std.NewUserRealm(admin)) boards2.EditThread(cross, bid, pid, title, body) // Render content must contains thread's title and body content := boards2.Render(path) println(strings.HasPrefix(content, "# "+title)) println(strings.Contains(content, body)) } // Output: // true // true