Adding expiration

This commit is contained in:
Frederick F. Kautz IV
2015-04-29 13:00:19 -07:00
parent 2ab8988a41
commit 5cc9418ca7
4 changed files with 51 additions and 4 deletions
+2 -1
View File
@@ -21,6 +21,7 @@ import (
. "github.com/minio-io/check"
"github.com/minio-io/minio/pkg/storage/drivers"
"time"
)
func Test(t *testing.T) { TestingT(t) }
@@ -31,7 +32,7 @@ var _ = Suite(&MySuite{})
func (s *MySuite) TestAPISuite(c *C) {
create := func() drivers.Driver {
_, _, store := Start(1000)
_, _, store := Start(1000, 3*time.Hour)
return store
}
drivers.APITestSuite(c, create)