From 29ec52602ff947675ea9a1788d62c0c552bd01af Mon Sep 17 00:00:00 2001
From: Muhammad Zahalqa <m@tryfinally.com>
Date: Thu, 16 Sep 2021 17:44:35 +0300
Subject: [PATCH] feat(golang): add `gota` to test current directory
 recursively (#8974)

---
 plugins/golang/README.md         | 1 +
 plugins/golang/golang.plugin.zsh | 1 +
 2 files changed, 2 insertions(+)

diff --git a/plugins/golang/README.md b/plugins/golang/README.md
index 0a1b43c30..0c90aa10b 100644
--- a/plugins/golang/README.md
+++ b/plugins/golang/README.md
@@ -27,4 +27,5 @@ plugins=(... golang)
 | gops    | `cd $GOPATH/src`        | Takes you to $GOPATH/src                                      |
 | gor     | `go run`                | Compiles and runs your code                                   |
 | 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 |
diff --git a/plugins/golang/golang.plugin.zsh b/plugins/golang/golang.plugin.zsh
index 398bd966f..eedde2573 100644
--- a/plugins/golang/golang.plugin.zsh
+++ b/plugins/golang/golang.plugin.zsh
@@ -271,4 +271,5 @@ alias gopb='cd $GOPATH/bin'
 alias gops='cd $GOPATH/src'
 alias gor='go run'
 alias got='go test'
+alias gota='go test ./...'
 alias gov='go vet'