File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change 11// Package tap provides support for automated Test Anything Protocol ("TAP")
22// tests in Go. For example:
33//
4- // package main
4+ // package main
55//
6- // import "github.com/mndrix/tap-go"
6+ // import "github.com/mndrix/tap-go"
77//
8- // func main() {
9- // t := tap.New()
10- // t.Header(2)
11- // t.Ok(true, "first test")
12- // t.Ok(true, "second test")
13- // }
8+ // func main() {
9+ // t := tap.New()
10+ // t.Header(2)
11+ // t.Ok(true, "first test")
12+ // t.Ok(true, "second test")
13+ // }
1414//
1515// generates the following output
1616//
17- // TAP version 13
18- // 1..2
19- // ok 1 - first test
20- // ok 2 - second test
17+ // TAP version 13
18+ // 1..2
19+ // ok 1 - first test
20+ // ok 2 - second test
2121package tap // import "github.com/mndrix/tap-go"
2222
2323import (
You can’t perform that action at this time.
0 commit comments