(t *testing.T)
| 43 | } |
| 44 | |
| 45 | func TestStorageDirDetectionWithOldVersions(t *testing.T) { |
| 46 | as := assert.New(t) |
| 47 | rwLayer, err := getRwLayerID("abcd", "/", AufsStorageDriver, []int{1, 9, 0}) |
| 48 | as.Nil(err) |
| 49 | as.Equal(rwLayer, "abcd") |
| 50 | } |
| 51 | |
| 52 | func TestStorageDirDetectionWithNewVersions(t *testing.T) { |
| 53 | as := assert.New(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…