(t *testing.T)
| 102 | } |
| 103 | |
| 104 | func TestRamPerVCPU(t *testing.T) { |
| 105 | s := testSpecStore() |
| 106 | |
| 107 | assert.Equal(t, 8, s.RamPerVCPU("a6000", 1)) |
| 108 | assert.Equal(t, 8, s.RamPerVCPU("a100xl", 1)) |
| 109 | assert.Equal(t, 8, s.RamPerVCPU("unknown", 1), "fallback") |
| 110 | } |
| 111 | |
| 112 | func TestStorageRange(t *testing.T) { |
| 113 | s := testSpecStore() |
nothing calls this directly
no test coverage detected