diff --git a/opencode.cfg/skills/basex-test/SKILL.md b/opencode.cfg/skills/basex-test/SKILL.md index e338a33..f85c5de 100644 --- a/opencode.cfg/skills/basex-test/SKILL.md +++ b/opencode.cfg/skills/basex-test/SKILL.md @@ -10,7 +10,7 @@ metadata: # Unit Functions -This BaseX module contains annotations and functions for performing XQUnit tests. Each test is an XQuery function with the `%unit:test` annotation. +This BaseX module contains annotations and functions for performing XQUnit tests. A test is an XQuery function with the `%unit:test` annotation. ## [Introduction](#introduction) @@ -85,7 +85,9 @@ unit:assert( $info as item() := () ) as empty-sequence() -SummaryAsserts that the effective boolean value of the specified `$test` is true and returns an empty sequence. Otherwise, raises an error. The _effective boolean value_ of an expression can be explicitly computed by using the `fn:boolean` function. The default failure message can be overridden with the `$info` argument.Errors +Summary + +Asserts that the effective boolean value of the specified `$test` is true and returns an empty sequence. Otherwise, raises an error. The _effective boolean value_ of an expression can be explicitly computed by using the `fn:boolean` function. The default failure message can be overridden with the `$info` argument.Errors | | | | --- | --- | @@ -101,7 +103,9 @@ unit:assert-equals( $info as item() := () ) as empty-sequence() -SummaryAsserts that the specified arguments are equal according to the rules of the `[fn:deep-equal](Standard_Functions#fn:deep-equal)` function. Otherwise, raises an error. The default failure message can be overridden with the `$info` argument.Errors +Summary + +Asserts that the specified arguments are equal according to the rules of the `[fn:deep-equal](Standard_Functions#fn:deep-equal)` function. Otherwise, raises an error. The default failure message can be overridden with the `$info` argument.Errors | | | | --- | --- | @@ -115,7 +119,9 @@ unit:fail( $info as item() := () ) as empty-sequence() -SummaryRaises a unit error. The default failure message can be overridden with the `$info` argument.Errors +Summary + +Raises a unit error. The default failure message can be overridden with the `$info` argument.Errors | | | | --- | --- |