示例#1
0
 def tearDown(self):
     print('Cleaning up upvote')
     delete_collection(db.collection(Upvote.collection_name))
     delete_anonymous_user(self.token)
示例#2
0
 def tearDown(self):
     print('Cleaning up upvote')
     delete_collection(db.collection(Upvote.collection_name), 5)
示例#3
0
 def tearDown(self):
     print('Cleaning up comments')
     delete_collection(db.collection(Comment.collection_name))
     delete_anonymous_user(self.token)
示例#4
0
 def tearDown(self):
     print('Cleaning up incident reports')
     delete_collection(db.collection(IncidentReport.collection_name))
示例#5
0
    def tearDown(self):
        print('Cleaning up comments')
        delete_collection(db.collection(Comment.collection_name))

        print('Cleaning up comment data')
        delete_collection(db.collection(CommentData.collection_name))
示例#6
0
 def tearDown(self):
     print('Cleaning up events')
     delete_collection(db.collection(Event.collection_name))
示例#7
0
 def tearDown(self):
     print('Cleaning up classifer')
     delete_collection(db.collection(Classifier.collection_name))
     delete_anonymous_user(self.token)
示例#8
0
 def tearDown(self):
     print('Cleaning up users')
     delete_collection(db.collection(User.collection_name), 5)
示例#9
0
 def tearDown(self):
     print('Cleaning up classifer')
     delete_collection(db.collection(Classifier.collection_name), 5)
示例#10
0
 def tearDown(self):
     print('Cleaning up events')
     delete_collection(db.collection(Event.collection_name))
     delete_collection(db.collection(IncidentReport.collection_name))
     delete_anonymous_user(self.token)