(t *testing.T)
| 16 | } |
| 17 | |
| 18 | func TestUpdateAvailable_NoCurrentVersion(t *testing.T) { |
| 19 | e := &Extension{ |
| 20 | kind: LocalKind, |
| 21 | } |
| 22 | |
| 23 | assert.False(t, e.UpdateAvailable()) |
| 24 | } |
| 25 | |
| 26 | func TestUpdateAvailable_NoLatestVersion(t *testing.T) { |
| 27 | e := &Extension{ |
nothing calls this directly
no test coverage detected