(t *testing.T)
| 24 | } |
| 25 | |
| 26 | func TestUpdateAvailable_NoLatestVersion(t *testing.T) { |
| 27 | e := &Extension{ |
| 28 | kind: BinaryKind, |
| 29 | currentVersion: "1.0.0", |
| 30 | } |
| 31 | |
| 32 | assert.False(t, e.UpdateAvailable()) |
| 33 | } |
| 34 | |
| 35 | func TestUpdateAvailable_CurrentVersionIsLatestVersion(t *testing.T) { |
| 36 | e := &Extension{ |
nothing calls this directly
no test coverage detected