grim/resticide

32bc94f303e2
Give the --help output some tlc, also added a --version argument
package loader
import (
"testing"
)
func TestLoadSchema(t *testing.T) {
s, e := loadSchema()
if s == nil {
t.Errorf("schema unexpectedly nil")
}
if e != nil {
t.Errorf("error unexpectedly set")
}
}