grim/resticide

Add a bunch of stuff to the readme
develop tip
2016-07-09, Gary Kramlich
f8bc0c4813a9
Add a bunch of stuff to the readme
package test
import (
"testing"
)
func TestResult(t *testing.T) {
test := &Test{}
res := NewResult(test)
if res.Test != test {
t.Errorf("Result.Test was not set")
}
if res.Passed != false {
t.Errorf("Result.Passed does not default to false")
}
}