render_example_test.gno
0.35 Kb · 12 lines
1package englishauction
2
3// ExampleRender pins the realm's Render output as a testable example.
4func ExampleRender() {
5 print(Render(""))
6 // Output:
7 // # English Auction
8 //
9 // Ascending-bid auctions. Start one, outbid others, and End it after its block deadline to award the item to the top bidder.
10 //
11 // _No auctions yet. Call `Start` to open one._
12}