Exemple #1
0
 def tearDown(self):
     print('Cleaning up upvote')
     delete_collection(db.collection(Upvote.collection_name))
     delete_anonymous_user(self.token)
Exemple #2
0
 def tearDown(self):
     print('Cleaning up upvote')
     delete_collection(db.collection(Upvote.collection_name), 5)
 def tearDown(self):
     print('Cleaning up comments')
     delete_collection(db.collection(Comment.collection_name))
     delete_anonymous_user(self.token)
 def tearDown(self):
     print('Cleaning up incident reports')
     delete_collection(db.collection(IncidentReport.collection_name))
    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))
 def tearDown(self):
     print('Cleaning up events')
     delete_collection(db.collection(Event.collection_name))
Exemple #7
0
 def tearDown(self):
     print('Cleaning up classifer')
     delete_collection(db.collection(Classifier.collection_name))
     delete_anonymous_user(self.token)
Exemple #8
0
 def tearDown(self):
     print('Cleaning up users')
     delete_collection(db.collection(User.collection_name), 5)
 def tearDown(self):
     print('Cleaning up classifer')
     delete_collection(db.collection(Classifier.collection_name), 5)
 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)