Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 935 Bytes

CONTRIBUTING.md

File metadata and controls

51 lines (33 loc) · 935 Bytes

Contributing to httpfake

👍🎉 First off, thanks for taking the time to contribute! 🎉👍

There are few ways of contributing to gaper

  • Report an issue.
  • Contribute to the code base.

Report an issue

  • Before opening the issue make sure there isn't an issue opened for the same problem
  • Include the Go and Gaper version you are using
  • If it is a bug, please include all info to reproduce the problem

Contribute to the code base

Pull Request

  • Please discuss the suggested changes on a issue before working on it. Just to make sure the change makes sense before you spending any time on it.

Setupping development

make setup

Running gaper in development

make build && ./gaper --verbose --bin-name srv --build-path ./testdata/server

Running lint

make lint

Running tests

All tests:

make test

A single test:

go test -run TestSimplePost ./...