Search Apps Documentation Source Content File Folder Download Copy Actions Download

z4c_register_app_filetest.gno

0.41 Kb · 18 lines
 1// PKGPATH: gno.land/r/aib/main
 2package main
 3
 4import (
 5	stdtesting "testing"
 6
 7	appstesting "gno.land/r/aib/ibc/apps/testing"
 8	"gno.land/r/aib/ibc/core"
 9)
10
11// RegisterApp fail because caller is not a realm
12func main(cur realm) {
13	stdtesting.SetRealm(stdtesting.NewUserRealm("g1user"))
14	core.RegisterApp(cross(cur), "app1", appstesting.NewApp(cross(cur)))
15}
16
17// Error:
18// RegisterApp can only be called from an other realm