(t *testing.T)
| 23 | } |
| 24 | |
| 25 | func TestBinDir(t *testing.T) { |
| 26 | t.Setenv("DOCKER_AGENT_TOOLS_DIR", "/custom/tools") |
| 27 | |
| 28 | dir := BinDir() |
| 29 | assert.Equal(t, "/custom/tools/bin", dir) |
| 30 | } |
| 31 | |
| 32 | func TestPackageDir(t *testing.T) { |
| 33 | t.Setenv("DOCKER_AGENT_TOOLS_DIR", "/custom/tools") |