$ ginkgo
Running Suite: GinkgoStudy Suite
================================
Random Seed: 1443106503
Will run 0 of 0 specs
Ran 0 of 0 Specs in 0.000 seconds
SUCCESS! -- 0 Passed | 0 Failed | 0 Pending | 0 Skipped PASS
Ginkgo ran 1 suite in 3.234616229s
Test Suite Passed
12345678910
$ go test
Running Suite: GinkgoStudy Suite
================================
Random Seed: 1443106514
Will run 0 of 0 specs
Ran 0 of 0 Specs in 0.000 seconds
SUCCESS! -- 0 Passed | 0 Failed | 0 Pending | 0 Skipped PASS
ok github.com/sgykfjsm/ginkgo-study 0.077s
$ go test -v -cover
=== RUN TestGinkgoStudy
Running Suite: GinkgoStudy Suite
================================
Random Seed: 1443114232
Will run 2 of 2 specs
••
Ran 2 of 2 Specs in 0.000 seconds
SUCCESS! -- 2 Passed | 0 Failed | 0 Pending | 0 Skipped --- PASS: TestGinkgoStudy (0.00 seconds)
PASS
coverage: 100.0% of statements
ok github.com/sgykfjsm/ginkgo-study 0.073s
$ go test -v -cover
=== RUN TestGinkgoStudy
Running Suite: GinkgoStudy Suite
================================
Random Seed: 1443114347
Will run 2 of 2 specs
• Failure [0.004 seconds]
GinkgoStudy
/Users/sgyk/local/script/golang/src/github.com/sgykfjsm/ginkgo-study/ginkgo_study_test.go:45
Criteria of pass or not
/Users/sgyk/local/script/golang/src/github.com/sgykfjsm/ginkgo-study/ginkgo_study_test.go:43
With more than 60
/Users/sgyk/local/script/golang/src/github.com/sgykfjsm/ginkgo-study/ginkgo_study_test.go:36
should be passed [It]
/Users/sgyk/local/script/golang/src/github.com/sgykfjsm/ginkgo-study/ginkgo_study_test.go:35
Expected
<bool>: false
to equal
<bool>: true
/Users/sgyk/local/script/golang/src/github.com/sgykfjsm/ginkgo-study/ginkgo_study_test.go:34
------------------------------
•
Summarizing 1 Failure:
[Fail] GinkgoStudy Criteria of pass or not With more than 60 [It] should be passed
/Users/sgyk/local/script/golang/src/github.com/sgykfjsm/ginkgo-study/ginkgo_study_test.go:34
Ran 2 of 2 Specs in 0.004 seconds
FAIL! -- 1 Passed | 1 Failed | 0 Pending | 0 Skipped --- FAIL: TestGinkgoStudy (0.00 seconds)
FAIL
exit status 1
FAIL github.com/sgykfjsm/ginkgo-study 0.071s