(t *testing.T)
| 86 | } |
| 87 | |
| 88 | func TestVCPUOptions(t *testing.T) { |
| 89 | s := testSpecStore() |
| 90 | |
| 91 | assert.Equal(t, []int{4, 6}, s.VCPUOptions("a6000", 1)) |
| 92 | assert.Equal(t, []int{60}, s.VCPUOptions("a100xl", 4)) |
| 93 | assert.Nil(t, s.VCPUOptions("unknown", 1)) |
| 94 | } |
| 95 | |
| 96 | func TestIncludedVCPUs(t *testing.T) { |
| 97 | s := testSpecStore() |
nothing calls this directly
no test coverage detected