@@ -430,7 +430,7 @@ All `gdt` scenarios have the following fields:
430430* `tests`: list of [`Spec`][basespec] specializations that represent the
431431 runnable test units in the test scenario.
432432
433- [basespec] : https://github.com/gdt-dev/gdt-core /blob/e1d23e0974447de0bcd273f151edebeebc2b96c6/spec /spec.go#L27-L39
433+ [basespec] : https://github.com/gdt-dev/gdt/blob/2791e11105fd3c36d1f11a7d111e089be7cdc84c/types /spec.go#L27-L44
434434
435435The scenario's `tests` field is the most important and the [`Spec`][basespec]
436436objects that it contains are the meat of a test scenario.
@@ -466,8 +466,8 @@ classes inherit these fields):
466466* `wait.after`: a string duration of time that gdt should wait after executing
467467 the test unit's action.
468468
469- [timeout] : https://github.com/gdt-dev/gdt-core /blob/e1d23e0974447de0bcd273f151edebeebc2b96c6 /types/timeout.go#L11-L22
470- [wait] : https://github.com/gdt-dev/gdt-core /blob/a204ffb055b284a1e943e1f7c7ec578408071d52 /types/wait.go
469+ [timeout] : https://github.com/gdt-dev/gdt/blob/2791e11105fd3c36d1f11a7d111e089be7cdc84c /types/timeout.go#L11-L22
470+ [wait] : https://github.com/gdt-dev/gdt/blob/2791e11105fd3c36d1f11a7d111e089be7cdc84c /types/wait.go#L11-L25
471471
472472# ## `exec` test spec structure
473473
@@ -489,15 +489,15 @@ the base `Spec` fields listed above):
489489* `exit_code`: (optional) an integer with the expected exit code from the
490490 executed command. The default successful exit code is 0 and therefore you do
491491 not need to specify this if you expect a successful exit code.
492- * `out`: (optional) a [`PipeAssertions `][pipeassertions ] object containing
492+ * `out`: (optional) a [`PipeExpect `][pipeexpect ] object containing
493493 assertions about content in `stdout`.
494494* `out.is`: (optional) a string with the exact contents of `stdout` you expect
495495 to get.
496496* `out.contains`: (optional) a list of one or more strings that *all* must be
497497 present in `stdout`.
498498* `out.contains_one_of`: (optional) a list of one or more strings of which *at
499499 least one* must be present in `stdout`.
500- * `err`: (optional) a [`PipeAssertions`][pipeassertions ] object containing
500+ * `err`: (optional) a [`PipeAssertions`][pipeexpect ] object containing
501501 assertions about content in `stderr`.
502502* `err.is`: (optional) a string with the exact contents of `stderr` you expect
503503 to get.
@@ -506,8 +506,8 @@ the base `Spec` fields listed above):
506506* `err.contains_one_of`: (optional) a list of one or more strings of which *at
507507 least one* must be present in `stderr`.
508508
509- [execspec] : https://github.com/gdt-dev/gdt-core /blob/e1d23e0974447de0bcd273f151edebeebc2b96c6/types/timeout .go#L11-L22
510- [pipeassertions ] : https://github.com/gdt-dev/gdt-core /blob/debff55b194b222a0db65d20ffce94f0aba68504 /exec/assertions.go#L16-L27
509+ [execspec] : https://github.com/gdt-dev/gdt/blob/2791e11105fd3c36d1f11a7d111e089be7cdc84c/exec/spec .go#L11-L34
510+ [pipeexpect ] : https://github.com/gdt-dev/gdt/blob/2791e11105fd3c36d1f11a7d111e089be7cdc84c /exec/assertions.go#L15-L26
511511
512512# # Contributing and acknowledgements
513513
0 commit comments