(t *testing.T)
| 72 | } |
| 73 | |
| 74 | func TestReadAuthURL_NotExists(t *testing.T) { |
| 75 | dir := t.TempDir() |
| 76 | tokenPath := filepath.Join(dir, "token") |
| 77 | |
| 78 | assert.Empty(t, readAuthURL(tokenPath)) |
| 79 | } |
| 80 | |
| 81 | func TestTryCreateLockFile_Success(t *testing.T) { |
| 82 | dir := t.TempDir() |
nothing calls this directly
no test coverage detected