go-test / deep

Golang deep variable equality test that returns human-readable differences
MIT License
743 stars 54 forks source link

Enable go modules #26

Closed radeksimko closed 4 years ago

radeksimko commented 5 years ago

Go modules are becoming a de-facto standard in the Go community and adding go.mod files with metadata helps projects which may consume this repository as a dependency in deciding how to pin transitive dependencies and how to resolve conflicts.

This is a result of the following commands:

go mod init
go get ./...
go mod tidy

in a clean Go 1.11.5 environment.

coveralls commented 5 years ago

Coverage Status

Coverage remained the same at 100.0% when pulling 4d2792eee8dd1b28a62fb2a024bee2c6dbe7ec64 on radeksimko:go-mod into 042da051cf3189d80f667339b822c7effac29cd6 on go-test:master.

daniel-nichter commented 4 years ago

Thank you. Have been meaning to do this for all my personal (and work) projects, but kind of like writing docs, seems we don't often get around to it.