(t *testing.T)
| 93 | } |
| 94 | |
| 95 | func TestRustHasTrailingDashes(t *testing.T) { |
| 96 | testConfig, ok := TestConfigurations["rust"] |
| 97 | assert.True(t, ok, "unexpectedly unable to find rust test config") |
| 98 | |
| 99 | cmd, err := testConfig.GetTestCommand() |
| 100 | assert.NoError(t, err) |
| 101 | |
| 102 | assert.True(t, strings.HasSuffix(cmd, "--"), "rust's test command should have trailing dashes") |
| 103 | } |
| 104 | |
| 105 | func TestIdrisUsesExerciseSlug(t *testing.T) { |
| 106 | currentDir, err := os.Getwd() |
nothing calls this directly
no test coverage detected