Charles Weill

Results 117 comments of Charles Weill

Sounds reasonable. Feel free to make a pull request.

Can you please check why the tests are failing? Sorry I don't have much time to investigate myself.

@taiidani: It was a solution to the fact that in Golang you can have a function called `Foo` and `foo` in the same package or on the same struct. So...

@taiidani: I agree, it might be worth reaching out to the Golang team and getting their opinion.

gotests uses goimports under the hood to format your code and add imports. If you have a `config` package in your GOPATH, goimports may have accidentally imported it.

Hey yeah, sure thing. Send a PR and I'll approve.

When you have a PR that adds similar functionality, let me know. I'll be happy to have a look. Feel free to add more details here if you have suggestions....

Hi @chatrasen, while personally I'm not the biggest fan of mocks (I prefer fakes and stubs), I understand that many Go programmers would love to have this feature. I also...

Hi @kryptodev and thanks! Apologies for the late reply, I was away on vacation. A plugin would be great, but unfortunately I don't know the first thing about Intellij. I'll...

I believe the convention is to save the *_test suffix for tests only, so this is working as intended, unless you have a concrete example of when this functionality is...