mirror of
https://github.com/minio/minio.git
synced 2025-02-24 03:49:12 -05:00
Merge pull request #806 from harshavardhana/tests
Tests were running 4 times due to multiple times the TestingT{} was b…
This commit is contained in:
commit
5721d85c9a
@ -22,7 +22,6 @@ import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"encoding/xml"
|
||||
"net/http"
|
||||
@ -33,8 +32,6 @@ import (
|
||||
"github.com/minio/minio/pkg/server/api"
|
||||
)
|
||||
|
||||
func TestAPIDonutCache(t *testing.T) { TestingT(t) }
|
||||
|
||||
type MyAPIDonutCacheSuite struct {
|
||||
root string
|
||||
}
|
||||
|
@ -23,7 +23,6 @@ import (
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"encoding/xml"
|
||||
"net/http"
|
||||
@ -34,8 +33,6 @@ import (
|
||||
"github.com/minio/minio/pkg/server/api"
|
||||
)
|
||||
|
||||
func TestAPIDonut(t *testing.T) { TestingT(t) }
|
||||
|
||||
type MyAPIDonutSuite struct {
|
||||
root string
|
||||
}
|
||||
|
@ -23,7 +23,6 @@ import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"encoding/xml"
|
||||
"net/http"
|
||||
@ -35,8 +34,6 @@ import (
|
||||
"github.com/minio/minio/pkg/server/api"
|
||||
)
|
||||
|
||||
func TestAPISignatureV4(t *testing.T) { TestingT(t) }
|
||||
|
||||
type MyAPISignatureV4Suite struct {
|
||||
root string
|
||||
req *http.Request
|
||||
|
@ -19,7 +19,6 @@ package server
|
||||
import (
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"testing"
|
||||
|
||||
jsonrpc "github.com/minio/minio/internal/github.com/gorilla/rpc/v2/json"
|
||||
. "github.com/minio/minio/internal/gopkg.in/check.v1"
|
||||
@ -27,8 +26,6 @@ import (
|
||||
"github.com/minio/minio/pkg/server/rpc"
|
||||
)
|
||||
|
||||
func TestRPC(t *testing.T) { TestingT(t) }
|
||||
|
||||
type MyRPCSuite struct{}
|
||||
|
||||
var _ = Suite(&MyRPCSuite{})
|
||||
|
@ -28,10 +28,16 @@ import (
|
||||
"regexp"
|
||||
"sort"
|
||||
"strings"
|
||||
"testing"
|
||||
"time"
|
||||
"unicode/utf8"
|
||||
|
||||
. "github.com/minio/minio/internal/gopkg.in/check.v1"
|
||||
)
|
||||
|
||||
// Hook up gocheck into the "go test" runner.
|
||||
func Test(t *testing.T) { TestingT(t) }
|
||||
|
||||
const (
|
||||
authHeader = "AWS4-HMAC-SHA256"
|
||||
iso8601Format = "20060102T150405Z"
|
||||
|
Loading…
x
Reference in New Issue
Block a user