aboutsummaryrefslogtreecommitdiff
path: root/cmd/krino/main_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/krino/main_test.go')
-rw-r--r--cmd/krino/main_test.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/cmd/krino/main_test.go b/cmd/krino/main_test.go
index 6e4df44..6d1d30e 100644
--- a/cmd/krino/main_test.go
+++ b/cmd/krino/main_test.go
@@ -41,8 +41,8 @@ func TestBadFlag(t *testing.T) {
}
}
-// TestCommandsAreReserved is item E: every subcommand name must also be a
-// reserved directory name, so a directory can never shadow a command.
+// TestCommandsAreReserved: every subcommand name must also be a reserved
+// directory name, so a directory can never shadow a command.
func TestCommandsAreReserved(t *testing.T) {
for name := range commands {
if !config.Reserved[name] {
@@ -51,10 +51,10 @@ func TestCommandsAreReserved(t *testing.T) {
}
}
-// TestSortNoConfig: apply is implemented as of Task 7, so running with no
-// config at all now fails the same way every other command does — "not
-// found" from engine.Load, not the old "not implemented yet" hard stop this
-// test used to pin (removed as part of Task 7; see cmd/krino/sort.go).
+// TestSortNoConfig: running with no config at all fails the same way every
+// other command does — "not found" from engine.Load, not the old "not
+// implemented yet" hard stop this test used to pin before apply was
+// implemented (see cmd/krino/sort.go).
func TestSortNoConfig(t *testing.T) {
home(t)
code, _, errOut := runCLI(t)