Skip to content

zaypen/gest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

gest

A simple wrapper of testing.T to provide DSL-like testing pattern in Go.

Install

go get github.com/zaypen/gest

Or

dep ensure -add github.com/zaypen/gest

Usage

package xxx

import (
	"testing"
	"github.com/zaypen/gest"
)

func TestPlus(t *testing.T)  {
	gest.I(t).Should("1 + 2 == 3").Expect(1 + 2).ToBe(3)
}

About

A simple testing helper for Go

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages