Re: [go-nuts] using ginkgo

2018-04-25 Thread Keith Brown
thank for the response John. My intention is to run integration test where I specify my test in english (acceptance test driven tests). I dont mind generating the binary but I would like to use the binary to test components such as. 1) if the web server is alive. 2) if a certain url gives me a

Re: [go-nuts] using ginkgo

2018-04-20 Thread unknown
Keith Brown writes: > I would like to have a tool for testing infrastructure components. I > stumbled across Ginkgo. Does anyone use it? Yes, it is being used by multiple CloudFoundry projects [1] > Does it need a go compiler for tests? Yes. > My intention is to write simple tests, "Is serve

[go-nuts] using ginkgo

2018-04-19 Thread Keith Brown
I would like to have a tool for testing infrastructure components. I stumbled across Ginkgo. Does anyone use it? Does it need a go compiler for tests? My intention is to write simple tests, "Is server up?". "Does the file contain abc". But I don't want to have the go compiler installed to run