summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/smartystreets/assertions/should/should.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/smartystreets/assertions/should/should.go')
-rw-r--r--src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/smartystreets/assertions/should/should.go73
1 files changed, 0 insertions, 73 deletions
diff --git a/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/smartystreets/assertions/should/should.go b/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/smartystreets/assertions/should/should.go
deleted file mode 100644
index 596e43b8f8b..00000000000
--- a/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/smartystreets/assertions/should/should.go
+++ /dev/null
@@ -1,73 +0,0 @@
-// package should is simply a rewording of the assertion
-// functions in the assertions package.
-package should
-
-import "github.com/smartystreets/assertions"
-
-var (
- Equal = assertions.ShouldEqual
- NotEqual = assertions.ShouldNotEqual
- AlmostEqual = assertions.ShouldAlmostEqual
- NotAlmostEqual = assertions.ShouldNotAlmostEqual
- Resemble = assertions.ShouldResemble
- NotResemble = assertions.ShouldNotResemble
- PointTo = assertions.ShouldPointTo
- NotPointTo = assertions.ShouldNotPointTo
- BeNil = assertions.ShouldBeNil
- NotBeNil = assertions.ShouldNotBeNil
- BeTrue = assertions.ShouldBeTrue
- BeFalse = assertions.ShouldBeFalse
- BeZeroValue = assertions.ShouldBeZeroValue
-
- BeGreaterThan = assertions.ShouldBeGreaterThan
- BeGreaterThanOrEqualTo = assertions.ShouldBeGreaterThanOrEqualTo
- BeLessThan = assertions.ShouldBeLessThan
- BeLessThanOrEqualTo = assertions.ShouldBeLessThanOrEqualTo
- BeBetween = assertions.ShouldBeBetween
- NotBeBetween = assertions.ShouldNotBeBetween
- BeBetweenOrEqual = assertions.ShouldBeBetweenOrEqual
- NotBeBetweenOrEqual = assertions.ShouldNotBeBetweenOrEqual
-
- Contain = assertions.ShouldContain
- NotContain = assertions.ShouldNotContain
- ContainKey = assertions.ShouldContainKey
- NotContainKey = assertions.ShouldNotContainKey
- BeIn = assertions.ShouldBeIn
- NotBeIn = assertions.ShouldNotBeIn
- BeEmpty = assertions.ShouldBeEmpty
- NotBeEmpty = assertions.ShouldNotBeEmpty
- HaveLength = assertions.ShouldHaveLength
-
- StartWith = assertions.ShouldStartWith
- NotStartWith = assertions.ShouldNotStartWith
- EndWith = assertions.ShouldEndWith
- NotEndWith = assertions.ShouldNotEndWith
- BeBlank = assertions.ShouldBeBlank
- NotBeBlank = assertions.ShouldNotBeBlank
- ContainSubstring = assertions.ShouldContainSubstring
- NotContainSubstring = assertions.ShouldNotContainSubstring
-
- EqualWithout = assertions.ShouldEqualWithout
- EqualTrimSpace = assertions.ShouldEqualTrimSpace
-
- Panic = assertions.ShouldPanic
- NotPanic = assertions.ShouldNotPanic
- PanicWith = assertions.ShouldPanicWith
- NotPanicWith = assertions.ShouldNotPanicWith
-
- HaveSameTypeAs = assertions.ShouldHaveSameTypeAs
- NotHaveSameTypeAs = assertions.ShouldNotHaveSameTypeAs
- Implement = assertions.ShouldImplement
- NotImplement = assertions.ShouldNotImplement
-
- HappenBefore = assertions.ShouldHappenBefore
- HappenOnOrBefore = assertions.ShouldHappenOnOrBefore
- HappenAfter = assertions.ShouldHappenAfter
- HappenOnOrAfter = assertions.ShouldHappenOnOrAfter
- HappenBetween = assertions.ShouldHappenBetween
- HappenOnOrBetween = assertions.ShouldHappenOnOrBetween
- NotHappenOnOrBetween = assertions.ShouldNotHappenOnOrBetween
- HappenWithin = assertions.ShouldHappenWithin
- NotHappenWithin = assertions.ShouldNotHappenWithin
- BeChronological = assertions.ShouldBeChronological
-)