GithubHelp home page GithubHelp logo

imclab / goconvey Goto Github PK

View Code? Open in Web Editor NEW

This project forked from smartystreets/goconvey

0.0 1.0 0.0 5.71 MB

Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go.

Home Page: http://goconvey.co

License: Other

goconvey's Introduction

GoConvey is awesome Go testing

Build Status GoDoc

Welcome to GoConvey, a yummy Go testing tool for gophers. Works with go test. Use it in the terminal or browser according your viewing pleasure. View full feature tour.

Features:

  • Directly integrates with go test
  • Fully-automatic web UI (works with native Go tests, too)
  • Huge suite of regression tests
  • Shows test coverage (Go 1.2+)
  • Readable, colorized console output (understandable by any manager, IT or not)
  • Test code generator
  • Desktop notifications (optional)
  • Immediately open problem lines in Sublime Text (some assembly required)

Menu:

Installation

Go Version 1.2+

$ go get -t github.com/smartystreets/goconvey

The -t flag above ensures that all test dependencies for goconvey are downloaded.

Go - Before Version 1.2

$ go get github.com/smartystreets/goconvey
$ go get github.com/jacobsa/oglematchers

Quick start

Make a test, for example:

func TestSpec(t *testing.T) {
	var x int
	
	// Only pass t into top-level Convey calls
	Convey("Given some integer with a starting value", t, func() {
		x = 1

		Convey("When the integer is incremented", func() {
			x++

			Convey("The value should be greater by one", func() {
				So(x, ShouldEqual, 2)
			})
		})
	})
}

In the browser

Start up the GoConvey web server at your project's path:

$ $GOPATH/bin/goconvey

Then open your browser to:

http://localhost:8080

There you have it. As long as GoConvey is running, test results will automatically update in your browser window. The design is responsive, so you can squish the browser real tight if you need to put it beside your code.

The web UI supports traditional Go tests, so use it even if you're not using GoConvey tests.

In the terminal

Just do what you do best:

$ go test

Or if you want the output to include the story:

$ go test -v

Documentation

Check out the

  • GoConvey wiki,
  • GoDoc
  • and the *_test.go files scattered throughout this project.

Screenshots

For web UI and terminal screenshots, check out the full feature tour.

Contributions

You can get started on the guidelines page found in our wiki.

Contributors (Thanks!)

We appreciate everyone's contributions to the project! Please see the contributor graphs provided by GitHub for all the credits.

GoConvey is brought to you by SmartyStreets; in particular:

goconvey's People

Contributors

aaasen avatar adrianduke avatar andrewreds avatar aybabtme avatar bborbe avatar dancannon avatar dgryski avatar jaredly avatar mdwhatcott avatar mholt avatar nickpresta avatar taksatou avatar ulrichschreiner avatar vad avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.