(t *testing.T)
| 8 | ) |
| 9 | |
| 10 | func TestUpdateAvailable_IsLocal(t *testing.T) { |
| 11 | e := &Extension{ |
| 12 | kind: LocalKind, |
| 13 | } |
| 14 | |
| 15 | assert.False(t, e.UpdateAvailable()) |
| 16 | } |
| 17 | |
| 18 | func TestUpdateAvailable_NoCurrentVersion(t *testing.T) { |
| 19 | e := &Extension{ |
nothing calls this directly
no test coverage detected