reorganized

This commit is contained in:
Unknown
2018-02-04 23:18:47 -05:00
parent 645c6ef3aa
commit 101437ead3
11 changed files with 113 additions and 10 deletions

View File

@@ -2,12 +2,16 @@ package ps
import (
"fmt"
"io/ioutil"
"path"
"strings"
_ "io/ioutil"
_ "path"
_ "strings"
"testing"
)
func TestPkgPath(t *testing.T) {
fmt.Println(PKGPATH)
}
// TODO: Comparison borked
func TestRun(t *testing.T) {
out := []byte("Testing...\n")
@@ -40,6 +44,7 @@ func TestWait(t *testing.T) {
}
// TODO: Comparison borked
/*
func TestJS(t *testing.T) {
out := "Testing...\n"
_, err := Js(path.Join(Folder, "test.jsx"), Folder)
@@ -57,3 +62,4 @@ func TestJS(t *testing.T) {
t.Fatal(fail)
}
}
*/