render_example_test.gno
0.52 Kb · 16 lines
1package eightball
2
3// ExampleRender pins the realm's Render output as a testable example.
4func ExampleRender() {
5 print(Render(""))
6 // Output:
7 // # 🎱 Magic 8-Ball
8 //
9 // > ⚠️ Experimental, auto-generated with no human supervision (MCP test corpus). Not audited. See [r/moul/x/daily](https://github.com/moul/gno-contracts/blob/main/r/moul/x/daily/README.md).
10 //
11 // Ask a yes/no question — the block height decides your fate.
12 //
13 // **Questions asked:** 0
14 //
15 // _No questions yet. Call `Ask("will it rain tomorrow?")`._
16}