Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding support for default http-messages #5

Merged
merged 3 commits into from Jun 30, 2019
Merged

Adding support for default http-messages #5

merged 3 commits into from Jun 30, 2019

Conversation

alexzimmer96
Copy link
Contributor

This PR would add support for default http-messages. Usage is explained inside the README.md

@coveralls
Copy link

coveralls commented Jun 29, 2019

Coverage Status

Coverage increased (+1.2%) to 99.0% when pulling 1fb9543 on alexzimmer96:master into 466cc16 on nicklaw5:master.

Copy link
Owner

@nicklaw5 nicklaw5 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good. Just the one question.

go.mod Outdated
@@ -0,0 +1,3 @@
module github.com/nicklaw5/go-respond

go 1.12
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there any real need to include this file if we don't have any dependencies?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, otherwise i could not use it outside my gopath. The package names did not resolve right in the tests.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't believe the absence of a go.mod file would break your tests. Can you provide an example of the issue you're running into?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi Nick, i did not say it breaks the build generally. It Just cant find the right package if you are outside of the gopath.

Why is this such a big thing? Go Modules are a Feature added in Go 1.12. They do not give any disadvantages and you could just ignore them if working not with go 1.12.

Copy link
Owner

@nicklaw5 nicklaw5 Jun 29, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You may have to pull in your dependencies before running tests. For example

go get ./...
go test ./...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When i delete the go.mod file and try to test this project outside from $GOPATH or $GOROOT, it will give me following error output:

PS C:\Users\Alex\Desktop\go-respond> go test ./
# _/C_/Users/Alex/Desktop/go-respond
error_test.go:8:2: cannot find package "github.com/nicklaw5/go-respond" in any of:
        C:\Go\src\github.com\nicklaw5\go-respond (from $GOROOT)
        D:\Go\src\github.com\nicklaw5\go-respond (from $GOPATH)
FAIL    _/C_/Users/Alex/Desktop/go-respond [setup failed]
PS C:\Users\Alex\Desktop\go-respond>

Adding this file would remove the need of placing this project inside your $GOPATH or $GOROOT, even if you don't have any dependencies. You declare a package-name which would otherwise not be found.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see what you mean. That can be fixed. Let me fix it and then we rebase your branch onto master.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok that's been fixed on the master branch. You'll need to rebase this branch:

git rebase master

Then apply the changes in 4ab9d9b.

You should then be able to run your tests without any issue.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I merged your changes, removed the go.mod file and fixed some more importing issues.

@nicklaw5 nicklaw5 merged commit 3bbdd46 into nicklaw5:master Jun 30, 2019
@nicklaw5
Copy link
Owner

Thanks 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants