(t *testing.T)
| 45 | } |
| 46 | |
| 47 | func TestTemplatePull_NoName(t *testing.T) { |
| 48 | t.Parallel() |
| 49 | |
| 50 | inv, _ := clitest.New(t, "templates", "pull") |
| 51 | err := inv.Run() |
| 52 | require.Error(t, err) |
| 53 | } |
| 54 | |
| 55 | // Stdout tests that 'templates pull' pulls down the active template |
| 56 | // and writes it to stdout. |