Merge pull request #12 from matttproud/refactor/decouple-from-bazaar
Decouple from Bazaar.
This commit is contained in:
commit
01c4092691
|
@ -1,8 +1,5 @@
|
||||||
language: go
|
language: go
|
||||||
|
|
||||||
before_install:
|
|
||||||
- sudo apt-get install bzr >/dev/null 2>&1
|
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- go get -v github.com/matttproud/golang_instrumentation
|
- go get -v github.com/matttproud/golang_instrumentation
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ license that can be found in the LICENSE file.
|
||||||
package maths
|
package maths
|
||||||
|
|
||||||
import (
|
import (
|
||||||
. "launchpad.net/gocheck"
|
. "github.com/matttproud/gocheck"
|
||||||
"math"
|
"math"
|
||||||
"reflect"
|
"reflect"
|
||||||
)
|
)
|
||||||
|
|
|
@ -9,7 +9,7 @@ license that can be found in the LICENSE file.
|
||||||
package maths
|
package maths
|
||||||
|
|
||||||
import (
|
import (
|
||||||
. "launchpad.net/gocheck"
|
. "github.com/matttproud/gocheck"
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ license that can be found in the LICENSE file.
|
||||||
package maths
|
package maths
|
||||||
|
|
||||||
import (
|
import (
|
||||||
. "launchpad.net/gocheck"
|
. "github.com/matttproud/gocheck"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (s *S) TestAverageOnEmpty(c *C) {
|
func (s *S) TestAverageOnEmpty(c *C) {
|
||||||
|
|
|
@ -9,9 +9,9 @@ license that can be found in the LICENSE file.
|
||||||
package metrics
|
package metrics
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
. "github.com/matttproud/gocheck"
|
||||||
"github.com/matttproud/golang_instrumentation/maths"
|
"github.com/matttproud/golang_instrumentation/maths"
|
||||||
"github.com/matttproud/golang_instrumentation/utility"
|
"github.com/matttproud/golang_instrumentation/utility"
|
||||||
. "launchpad.net/gocheck"
|
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ license that can be found in the LICENSE file.
|
||||||
package metrics
|
package metrics
|
||||||
|
|
||||||
import (
|
import (
|
||||||
. "launchpad.net/gocheck"
|
. "github.com/matttproud/gocheck"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (s *S) TestCounterCreate(c *C) {
|
func (s *S) TestCounterCreate(c *C) {
|
||||||
|
|
|
@ -10,9 +10,9 @@ package metrics
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"container/heap"
|
"container/heap"
|
||||||
|
. "github.com/matttproud/gocheck"
|
||||||
"github.com/matttproud/golang_instrumentation/maths"
|
"github.com/matttproud/golang_instrumentation/maths"
|
||||||
"github.com/matttproud/golang_instrumentation/utility"
|
"github.com/matttproud/golang_instrumentation/utility"
|
||||||
. "launchpad.net/gocheck"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func (s *S) TestEvictOldest(c *C) {
|
func (s *S) TestEvictOldest(c *C) {
|
||||||
|
|
|
@ -9,7 +9,7 @@ license that can be found in the LICENSE file.
|
||||||
package metrics
|
package metrics
|
||||||
|
|
||||||
import (
|
import (
|
||||||
. "launchpad.net/gocheck"
|
. "github.com/matttproud/gocheck"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (s *S) TestGaugeCreate(c *C) {
|
func (s *S) TestGaugeCreate(c *C) {
|
||||||
|
|
|
@ -9,8 +9,8 @@ license that can be found in the LICENSE file.
|
||||||
package metrics
|
package metrics
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
. "github.com/matttproud/gocheck"
|
||||||
"github.com/matttproud/golang_instrumentation/maths"
|
"github.com/matttproud/golang_instrumentation/maths"
|
||||||
. "launchpad.net/gocheck"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func (s *S) TestEquallySizedBucketsFor(c *C) {
|
func (s *S) TestEquallySizedBucketsFor(c *C) {
|
||||||
|
|
|
@ -9,7 +9,7 @@ license that can be found in the LICENSE file.
|
||||||
package metrics
|
package metrics
|
||||||
|
|
||||||
import (
|
import (
|
||||||
. "launchpad.net/gocheck"
|
. "github.com/matttproud/gocheck"
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,8 @@ license that can be found in the LICENSE file.
|
||||||
package metrics
|
package metrics
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
. "github.com/matttproud/gocheck"
|
||||||
"github.com/matttproud/golang_instrumentation/maths"
|
"github.com/matttproud/golang_instrumentation/maths"
|
||||||
. "launchpad.net/gocheck"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func (s *S) TestTallyingPercentileEstimatorMinimum(c *C) {
|
func (s *S) TestTallyingPercentileEstimatorMinimum(c *C) {
|
||||||
|
|
|
@ -9,7 +9,7 @@ license that can be found in the LICENSE file.
|
||||||
package metrics
|
package metrics
|
||||||
|
|
||||||
import (
|
import (
|
||||||
. "launchpad.net/gocheck"
|
. "github.com/matttproud/gocheck"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ license that can be found in the LICENSE file.
|
||||||
package utility
|
package utility
|
||||||
|
|
||||||
import (
|
import (
|
||||||
. "launchpad.net/gocheck"
|
. "github.com/matttproud/gocheck"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (s *S) TestEmptyOptional(c *C) {
|
func (s *S) TestEmptyOptional(c *C) {
|
||||||
|
|
|
@ -10,7 +10,7 @@ package utility
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"container/heap"
|
"container/heap"
|
||||||
. "launchpad.net/gocheck"
|
. "github.com/matttproud/gocheck"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (s *S) TestPriorityQueueSort(c *C) {
|
func (s *S) TestPriorityQueueSort(c *C) {
|
||||||
|
|
|
@ -9,7 +9,7 @@ license that can be found in the LICENSE file.
|
||||||
package utility
|
package utility
|
||||||
|
|
||||||
import (
|
import (
|
||||||
. "launchpad.net/gocheck"
|
. "github.com/matttproud/gocheck"
|
||||||
)
|
)
|
||||||
|
|
||||||
type valueEqualsChecker struct {
|
type valueEqualsChecker struct {
|
||||||
|
|
|
@ -9,7 +9,7 @@ license that can be found in the LICENSE file.
|
||||||
package utility
|
package utility
|
||||||
|
|
||||||
import (
|
import (
|
||||||
. "launchpad.net/gocheck"
|
. "github.com/matttproud/gocheck"
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue