.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / mvdan.cc / gofumpt@v0.1.0 / main_test.go
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/mvdan.cc/gofumpt@v0.1.0/main_test.go b/.config/coc/extensions/coc-go-data/tools/pkg/mod/mvdan.cc/gofumpt@v0.1.0/main_test.go
new file mode 100644 (file)
index 0000000..e3a0058
--- /dev/null
@@ -0,0 +1,40 @@
+// Copyright (c) 2019, Daniel Martí <mvdan@mvdan.cc>
+// See LICENSE for licensing information
+
+package main
+
+import (
+       "os"
+       "path/filepath"
+       "testing"
+
+       "github.com/rogpeppe/go-internal/gotooltest"
+       "github.com/rogpeppe/go-internal/testscript"
+)
+
+func TestMain(m *testing.M) {
+       os.Exit(testscript.RunMain(m, map[string]func() int{
+               "gofumpt": func() int {
+                       gofumptMain()
+                       return exitCode
+               },
+       }))
+}
+
+func TestScripts(t *testing.T) {
+       t.Parallel()
+       p := testscript.Params{
+               Dir: filepath.Join("testdata", "scripts"),
+               Condition: func(cond string) (bool, error) {
+                       switch cond {
+                       case "gofumpt":
+                               return true, nil
+                       }
+                       return false, nil
+               },
+       }
+       if err := gotooltest.Setup(&p); err != nil {
+               t.Fatal(err)
+       }
+       testscript.Run(t, p)
+}