We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 324f6e5 commit a63e479Copy full SHA for a63e479
1 file changed
util/tap.go
@@ -1,23 +1,23 @@
1
// Package tap provides support for automated Test Anything Protocol ("TAP")
2
// tests in Go. For example:
3
//
4
-// package main
+// package main
5
6
-// import "github.com/mndrix/tap-go"
+// import "github.com/mndrix/tap-go"
7
8
-// func main() {
9
-// t := tap.New()
10
-// t.Header(2)
11
-// t.Ok(true, "first test")
12
-// t.Ok(true, "second test")
13
-// }
+// func main() {
+// t := tap.New()
+// t.Header(2)
+// t.Ok(true, "first test")
+// t.Ok(true, "second test")
+// }
14
15
// generates the following output
16
17
-// TAP version 13
18
-// 1..2
19
-// ok 1 - first test
20
-// ok 2 - second test
+// TAP version 13
+// 1..2
+// ok 1 - first test
+// ok 2 - second test
21
package tap // import "github.com/mndrix/tap-go"
22
23
import (
0 commit comments