MCPcopy Create free account
hub / github.com/exercism/cli / TestGetCommand

Function TestGetCommand

workspace/test_configurations_test.go:13–21  ·  view source on GitHub ↗
(t *testing.T)

Source from the content-addressed store, hash-verified

11)
12
13func TestGetCommand(t *testing.T) {
14 testConfig, ok := TestConfigurations["elixir"]
15 assert.True(t, ok, "unexpectedly unable to find elixir test config")
16
17 cmd, err := testConfig.GetTestCommand()
18 assert.NoError(t, err)
19
20 assert.Equal(t, cmd, "mix test")
21}
22
23func TestWindowsCommands(t *testing.T) {
24 testConfig, ok := TestConfigurations["cobol"]

Callers

nothing calls this directly

Calls 1

GetTestCommandMethod · 0.80

Tested by

no test coverage detected