mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
18 lines
281 B
Go
18 lines
281 B
Go
package storage
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestLoadingEcShards(t *testing.T) {
|
|
dl := NewDiskLocation("./erasure_coding", 100)
|
|
err := dl.loadAllEcShards()
|
|
if err != nil {
|
|
t.Errorf("load all ec shards: %v", err)
|
|
}
|
|
|
|
if len(dl.ecVolumes) != 1 {
|
|
t.Errorf("loading err")
|
|
}
|
|
}
|