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:
Harshavardhana 2015-08-20 22:35:37 -07:00
commit 5721d85c9a
5 changed files with 6 additions and 12 deletions

View file

@ -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
}

View file

@ -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
}

View file

@ -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

View file

@ -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{})

View file

@ -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"