blob: f1f18f9b7bc8636a9af04ebcf83daa89258a11a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package filesystem
import (
"testing"
. "gopkg.in/check.v1"
)
func Test(t *testing.T) { TestingT(t) }
type StorageSuite struct{}
var _ = Suite(&StorageSuite{})
|