mirror of https://github.com/go-redis/redis.git
Release redis.v3 beta.
This commit is contained in:
parent
b4f481ef43
commit
18ea75d2ad
|
@ -13,5 +13,5 @@ install:
|
|||
- go get github.com/onsi/ginkgo
|
||||
- go get github.com/onsi/gomega
|
||||
- mkdir -p $HOME/gopath/src/gopkg.in
|
||||
- mv $HOME/gopath/src/github.com/go-redis/redis $HOME/gopath/src/gopkg.in/redis.v2
|
||||
- cd $HOME/gopath/src/gopkg.in/redis.v2
|
||||
- mv $HOME/gopath/src/github.com/go-redis/redis $HOME/gopath/src/gopkg.in/redis.v3
|
||||
- cd $HOME/gopath/src/gopkg.in/redis.v3
|
||||
|
|
|
@ -10,7 +10,7 @@ import (
|
|||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
|
||||
"gopkg.in/redis.v2"
|
||||
"gopkg.in/redis.v3"
|
||||
)
|
||||
|
||||
type clusterScenario struct {
|
||||
|
|
|
@ -8,7 +8,8 @@ import (
|
|||
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
"gopkg.in/redis.v2"
|
||||
|
||||
"gopkg.in/redis.v3"
|
||||
)
|
||||
|
||||
var _ = Describe("Command", func() {
|
||||
|
|
|
@ -9,7 +9,8 @@ import (
|
|||
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
"gopkg.in/redis.v2"
|
||||
|
||||
"gopkg.in/redis.v3"
|
||||
)
|
||||
|
||||
var _ = Describe("Commands", func() {
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"fmt"
|
||||
"strconv"
|
||||
|
||||
"gopkg.in/redis.v2"
|
||||
"gopkg.in/redis.v3"
|
||||
)
|
||||
|
||||
var client *redis.Client
|
||||
|
|
|
@ -14,7 +14,7 @@ import (
|
|||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
|
||||
"gopkg.in/redis.v2"
|
||||
"gopkg.in/redis.v3"
|
||||
)
|
||||
|
||||
const redisAddr = ":6379"
|
||||
|
@ -67,7 +67,7 @@ var _ = AfterSuite(func() {
|
|||
|
||||
func TestGinkgoSuite(t *testing.T) {
|
||||
RegisterFailHandler(Fail)
|
||||
RunSpecs(t, "gopkg.in/redis.v2")
|
||||
RunSpecs(t, "gopkg.in/redis.v3")
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package redis_test
|
||||
|
||||
import (
|
||||
"gopkg.in/redis.v2"
|
||||
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
|
||||
"gopkg.in/redis.v3"
|
||||
)
|
||||
|
||||
var _ = Describe("Multi", func() {
|
||||
|
|
|
@ -4,10 +4,10 @@ import (
|
|||
"strconv"
|
||||
"sync"
|
||||
|
||||
"gopkg.in/redis.v2"
|
||||
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
|
||||
"gopkg.in/redis.v3"
|
||||
)
|
||||
|
||||
var _ = Describe("Pipelining", func() {
|
||||
|
|
|
@ -8,7 +8,7 @@ import (
|
|||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
|
||||
"gopkg.in/redis.v2"
|
||||
"gopkg.in/redis.v3"
|
||||
)
|
||||
|
||||
var _ = Describe("Pool", func() {
|
||||
|
|
|
@ -4,10 +4,10 @@ import (
|
|||
"net"
|
||||
"time"
|
||||
|
||||
"gopkg.in/redis.v2"
|
||||
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
|
||||
"gopkg.in/redis.v3"
|
||||
)
|
||||
|
||||
var _ = Describe("PubSub", func() {
|
||||
|
|
2
redis.go
2
redis.go
|
@ -1,4 +1,4 @@
|
|||
package redis // import "gopkg.in/redis.v2"
|
||||
package redis // import "gopkg.in/redis.v3"
|
||||
|
||||
import (
|
||||
"log"
|
||||
|
|
|
@ -8,7 +8,7 @@ import (
|
|||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
|
||||
"gopkg.in/redis.v2"
|
||||
"gopkg.in/redis.v3"
|
||||
)
|
||||
|
||||
var _ = Describe("Client", func() {
|
||||
|
|
|
@ -3,7 +3,8 @@ package redis_test
|
|||
import (
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
"gopkg.in/redis.v2"
|
||||
|
||||
"gopkg.in/redis.v3"
|
||||
)
|
||||
|
||||
var _ = Describe("Sentinel", func() {
|
||||
|
|
Loading…
Reference in New Issue