Example #1
0
        public void DeletePost()
        {
            bool result = postContext.Delete(new ObjectId("54119baeba39ab13045a993d"));

            Assert.IsTrue(result);
        }
Example #2
0
        public void DeleteUser()
        {
            bool result = userContext.Delete("john");

            Assert.IsTrue(result);
        }