Skip to content

Commit

Permalink
Fix missing "runtime_info" package documentation (#4476)
Browse files Browse the repository at this point in the history
It wasn't being built as part of testing/documentation for standard
library.
  • Loading branch information
SeanTAllen authored Jan 7, 2024
1 parent 4e1d83b commit 161b5ab
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .release-notes/4476.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Fix missing "runtime_info" package documentation

The documentation for the "runtime_info" package wasn't being generated. We've fixed that oversight.
8 changes: 8 additions & 0 deletions packages/runtime_info/_test.pony
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
use "pony_test"

actor \nodoc\ Main is TestList
new create(env: Env) => PonyTest(env, this)
new make() => None

fun tag tests(test: PonyTest) =>
None
2 changes: 2 additions & 0 deletions packages/stdlib/_test.pony
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ use pony_check = "pony_check"
use process = "process"
use promises = "promises"
use random = "random"
use runtime_info = "runtime_info"
use serialise = "serialise"
use signals = "signals"
use strings = "strings"
Expand Down Expand Up @@ -66,6 +67,7 @@ actor \nodoc\ Main is TestList
process.Main.make().tests(test)
promises.Main.make().tests(test)
random.Main.make().tests(test)
runtime_info.Main.make().tests(test)
serialise.Main.make().tests(test)
strings.Main.make().tests(test)
time.Main.make().tests(test)
Expand Down

0 comments on commit 161b5ab

Please sign in to comment.