summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/gopkg.in/mgo.v2/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/gopkg.in/mgo.v2/README.md')
-rw-r--r--src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/gopkg.in/mgo.v2/README.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/gopkg.in/mgo.v2/README.md b/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/gopkg.in/mgo.v2/README.md
deleted file mode 100644
index fdeb08166e1..00000000000
--- a/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/gopkg.in/mgo.v2/README.md
+++ /dev/null
@@ -1,25 +0,0 @@
-The MongoDB driver for Go
--------------------------
-
-Please go to [http://labix.org/mgo](http://labix.org/mgo) for all project details.
-
-## Testing
-
-Tests require custom orchestration. Install
-[daemontools](https://cr.yp.to/daemontools.html) as a prerequisite and make
-sure mongod and mongos are in your path. To start the orchestration:
-
- $ export PATH=/path/to/mongodb/bin:$PATH
- $ make startdb
-
-To stop the orchestration:
-
- $ make stopdb
-
-Run all tests like this (`gocheck.v` turns on verbose output):
-
- $ go test -gocheck.v
-
-To run a specific test, use the `gocheck.f` flag:
-
- $ go test -gocheck.v -gocheck.f TestFindAndModifyBug997828