mirror of
https://github.com/containers/bootc.git
synced 2026-02-05 15:45:53 +01:00
Use TF runner as test machine and run all test on TF runner itself Signed-off-by: Xiaofeng Wang <henrywangxf@me.com>
16 lines
283 B
Nu
16 lines
283 B
Nu
# A simple nushell "library" for the
|
|
# "Test anything protocol":
|
|
# https://testanything.org/tap-version-14-specification.html
|
|
export def begin [description] {
|
|
print "TAP version 14"
|
|
print $description
|
|
}
|
|
|
|
export def ok [] {
|
|
print "ok"
|
|
}
|
|
|
|
export def fail [] {
|
|
print "not ok"
|
|
}
|