summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests
diff options
context:
space:
mode:
authorJudah Schvimer <judah.schvimer@10gen.com>2019-09-24 22:42:48 +0000
committerevergreen <evergreen@mongodb.com>2019-09-24 22:42:48 +0000
commit1aa0fd66c06ff50dad692091a58c7929a31bc567 (patch)
treeb42ff88e7b831c2aef4483d5e8ea5efa16df365b /src/mongo/dbtests
parente76f54f8b6b6184dc7721a3c401e48372450cda5 (diff)
downloadmongo-1aa0fd66c06ff50dad692091a58c7929a31bc567.tar.gz
SERVER-43203 remove dbtests that were not run
Diffstat (limited to 'src/mongo/dbtests')
-rw-r--r--src/mongo/dbtests/repltests.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/mongo/dbtests/repltests.cpp b/src/mongo/dbtests/repltests.cpp
index f91068cfabb..7ca7eb19d80 100644
--- a/src/mongo/dbtests/repltests.cpp
+++ b/src/mongo/dbtests/repltests.cpp
@@ -979,21 +979,6 @@ public:
}
};
-class PushWithDollarSigns : public Base {
- void doIt() const {
- _client.update(ns(), BSON("_id" << 0), BSON("$push" << BSON("a" << BSON("$foo" << 1))));
- }
- using ReplTests::Base::check;
- void check() const {
- ASSERT_EQUALS(1, count());
- check(fromjson("{'_id':0, a:[0, {'$foo':1}]}"), one(fromjson("{'_id':0}")));
- }
- void reset() const {
- deleteAll(ns());
- insert(BSON("_id" << 0 << "a" << BSON_ARRAY(0)));
- }
-};
-
class PushSlice : public Base {
void doIt() const {
_client.update(
@@ -1279,21 +1264,6 @@ public:
}
};
-class AddToSetWithDollarSigns : public Base {
- void doIt() const {
- _client.update(ns(), BSON("_id" << 0), BSON("$addToSet" << BSON("a" << BSON("$foo" << 1))));
- }
- using ReplTests::Base::check;
- void check() const {
- ASSERT_EQUALS(1, count());
- check(fromjson("{'_id':0, a:[0, {'$foo':1}]}"), one(fromjson("{'_id':0}")));
- }
- void reset() const {
- deleteAll(ns());
- insert(BSON("_id" << 0 << "a" << BSON_ARRAY(0)));
- }
-};
-
//
// replay cases
//