tests updated
This commit is contained in:
parent
393c1450dc
commit
81c630ba31
|
@ -125,6 +125,7 @@ func (s *Server) Start(p *cli.Context) (err error) {
|
|||
return nil
|
||||
}
|
||||
|
||||
// Websocket projects
|
||||
func (s *Server) projects(c echo.Context) error {
|
||||
websocket.Handler(func(ws *websocket.Conn) {
|
||||
defer ws.Close()
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
package style
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"bytes"
|
||||
"fmt"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
@ -15,7 +15,7 @@ func TestColorBase_Regular(t *testing.T) {
|
|||
}
|
||||
result := c.Regular(input)
|
||||
expected := fmt.Sprint(input)
|
||||
if !bytes.Equal([]byte(result), []byte(expected)){
|
||||
if !bytes.Equal([]byte(result), []byte(expected)) {
|
||||
t.Error("Expected:", expected, "instead", result)
|
||||
}
|
||||
}
|
||||
|
@ -29,7 +29,7 @@ func TestColorBase_Bold(t *testing.T) {
|
|||
}
|
||||
result := c.Bold(input)
|
||||
expected := fmt.Sprint(input)
|
||||
if !bytes.Equal([]byte(result), []byte(expected)){
|
||||
if !bytes.Equal([]byte(result), []byte(expected)) {
|
||||
t.Error("Expected:", expected, "instead", result)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
package watcher
|
||||
|
||||
import (
|
||||
"flag"
|
||||
"gopkg.in/urfave/cli.v2"
|
||||
"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))
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue