mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
```bash for file in `cat diffys`; do printf '%s\n%s\n' "// Copyright 2021 Molecula Corp. All rights reserved." "$(cat $file)" >$file; done ```
29 lines
919 B
Go
29 lines
919 B
Go
// Copyright 2021 Molecula Corp. All rights reserved.
|
|
package cmd_test
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestInspectHelp(t *testing.T) {
|
|
output, err := ExecNewRootCommand(t, "inspect", "--help")
|
|
if !strings.Contains(output, "Usage:") ||
|
|
!strings.Contains(output, "featurebase inspect") || err != nil {
|
|
t.Fatalf("Command 'inspect --help' not working, err: '%v', output: '%s'", err, output)
|
|
}
|
|
}
|
|
|
|
func TestInspectNoPath(t *testing.T) {
|
|
output, err := ExecNewRootCommand(t, "inspect")
|
|
if !strings.Contains(err.Error(), "path required") {
|
|
t.Fatalf("Command 'inspect' without args should error but: err: '%v', output: '%v'", err, output)
|
|
}
|
|
}
|
|
|
|
func TestInspectMultiPath(t *testing.T) {
|
|
output, err := ExecNewRootCommand(t, "inspect", "one", "two")
|
|
if !strings.Contains(err.Error(), "only one path") {
|
|
t.Fatalf("Command 'inspect' without args should error but: err: '%v', output: '%v'", err, output)
|
|
}
|
|
}
|