(t *testing.T)
| 43 | } |
| 44 | |
| 45 | func TestUpdateAvailable(t *testing.T) { |
| 46 | e := &Extension{ |
| 47 | kind: BinaryKind, |
| 48 | currentVersion: "1.0.0", |
| 49 | latestVersion: "1.1.0", |
| 50 | } |
| 51 | |
| 52 | assert.True(t, e.UpdateAvailable()) |
| 53 | } |
| 54 | |
| 55 | func TestOwnerLocalExtension(t *testing.T) { |
| 56 | tempDir := t.TempDir() |
nothing calls this directly
no test coverage detected