61 lines
1.2 KiB
Go
61 lines
1.2 KiB
Go
package main
|
|
|
|
//
|
|
//import (
|
|
// "flag"
|
|
// "gopkg.in/urfave/cli.v2"
|
|
// "os"
|
|
// "path/filepath"
|
|
// "testing"
|
|
//)
|
|
//
|
|
//func TestArgsParam(t *testing.T) {
|
|
// set := flag.NewFlagSet("test", 0)
|
|
// set.Bool("myflag", false, "doc")
|
|
// params := cli.NewContext(nil, set, nil)
|
|
// set.Parse([]string{"--myflag", "bat", "baz"})
|
|
// result := argsParam(params)
|
|
// if len(result) != 2 {
|
|
// t.Fatal("Expected 2 instead", len(result))
|
|
// }
|
|
//}
|
|
//
|
|
//func TestDuplicates(t *testing.T) {
|
|
// projects := []Project{
|
|
// {
|
|
// Name: "a",
|
|
// }, {
|
|
// Name: "b",
|
|
// }, {
|
|
// Name: "c",
|
|
// },
|
|
// }
|
|
// _, err := duplicates(projects[0], projects)
|
|
// if err == nil {
|
|
// t.Fatal("Error unexpected", err)
|
|
// }
|
|
// _, err = duplicates(Project{}, projects)
|
|
// if err != nil {
|
|
// t.Fatal("Error unexpected", err)
|
|
// }
|
|
//
|
|
//}
|
|
//
|
|
//func TestInArray(t *testing.T) {
|
|
// arr := []string{"a", "b", "c"}
|
|
// if !inArray(arr[0], arr) {
|
|
// t.Fatal("Unexpected", arr[0], "should be in", arr)
|
|
// }
|
|
// if inArray("d", arr) {
|
|
// t.Fatal("Unexpected", "d", "shouldn't be in", arr)
|
|
// }
|
|
//}
|
|
//
|
|
//func TestGetEnvPath(t *testing.T) {
|
|
// expected := filepath.SplitList(os.Getenv("GOPATH"))[0]
|
|
// result := getEnvPath("GOPATH")
|
|
// if expected != result {
|
|
// t.Fatal("Expected", expected, "instead", result)
|
|
// }
|
|
//}
|