Unverified Commit 29ec5260 authored by Muhammad Zahalqa's avatar Muhammad Zahalqa Committed by GitHub

feat(golang): add `gota` to test current directory recursively (#8974)

parent 93b557e2
...@@ -27,4 +27,5 @@ plugins=(... golang) ...@@ -27,4 +27,5 @@ plugins=(... golang)
| gops | `cd $GOPATH/src` | Takes you to $GOPATH/src | | gops | `cd $GOPATH/src` | Takes you to $GOPATH/src |
| gor | `go run` | Compiles and runs your code | | gor | `go run` | Compiles and runs your code |
| got | `go test` | Runs tests | | got | `go test` | Runs tests |
| gota | `go test ./...` | Runs tests in all subdirectories |
| gov | `go vet` | Vet examines Go source code and reports suspicious constructs | | gov | `go vet` | Vet examines Go source code and reports suspicious constructs |
...@@ -271,4 +271,5 @@ alias gopb='cd $GOPATH/bin' ...@@ -271,4 +271,5 @@ alias gopb='cd $GOPATH/bin'
alias gops='cd $GOPATH/src' alias gops='cd $GOPATH/src'
alias gor='go run' alias gor='go run'
alias got='go test' alias got='go test'
alias gota='go test ./...'
alias gov='go vet' alias gov='go vet'
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment