Giter VIP home page Giter VIP logo

go-expect's Introduction

go-expect

A super simple assertion library that is heavily inspired by jest.

NOTE: This library is incomplete and should not be used in production

Motivation

Writing an assertion library is a great way to start learning a language, which I'm currently doing with go. I really enjoy writing tests in jest and thought it would be nice to have something similar for my go projects.

I use this for hobby projects that do not have such high demands on being able to test everything.

Installation

go get github.com/hampuslavin/go-expect

Example

package your_package

import (
	"testing"
    "github.com/hampuslavin/go-expect/expect"
)

func TestSuite(t *testing.T){
	t.Run("examples", expect.WithExpect(exampleCase))
}

type Dummy struct {
	X string
	Y *struct{ Z string }
}

func exampleCase(expect Expect) {
	expect(uint32(123)).ToEqual(int64(123))
	expect(nil).ToEqual(nil)
	expect(1).Not().ToEqual(2)

	Y := Dummy{}.Y
	expect(Y).ToBeNil()

	list := [2]int{2, 3}
	expect(list).ToHaveLength(2)

	dummy1 := Dummy{X: "123"}
	expect(dummy1).ToHaveProp("X", "123")

	dummy2 := Dummy{X: "123"}
	expect(dummy1).ToEqual(dummy2)

	dummy3 := Dummy{X: "hello"}
	expect(dummy1).Not().ToEqual(dummy3)
}

go-expect's People

Contributors

hampuslavin avatar

Watchers

James Cloos avatar  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.