本文整理匯總了Python中flashcardapp.datacontroller.DataController.deleteFlashcards方法的典型用法代碼示例。如果您正苦於以下問題:Python DataController.deleteFlashcards方法的具體用法?Python DataController.deleteFlashcards怎麽用?Python DataController.deleteFlashcards使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類flashcardapp.datacontroller.DataController
的用法示例。
在下文中一共展示了DataController.deleteFlashcards方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_deleteFlashcards
# 需要導入模塊: from flashcardapp.datacontroller import DataController [as 別名]
# 或者: from flashcardapp.datacontroller.DataController import deleteFlashcards [as 別名]
def test_deleteFlashcards(self):
"""
Steps this test will run:
1. Creates a new DataController
2. Calls the data controller method to delete flashcard 1, 2, and 19
3. Receives and validates the returned json string
4. Asserts the returns json says the deleted was successful
5. Asserts the message matches DataController.SUCCESS_STR
"""
persistingFc = Flashcard.objects.get(pk=19)
box1 = Box.objects.get(pk=1)
box2 = Box.objects.get(pk=8)
numofflashcards = 2
dc = DataController()
jsonStr = dc.deleteFlashcards({1:[2,19], 8:[7]})
data = json.loads(jsonStr)
self.assertTrue(data['deleted'], data['message'])
self.assertEqual(data['message'], DataController.SUCCESS_STR)
self.assertEqual(len(box1.flashcard_set.all()), numofflashcards)
self.assertEqual(len(box2.flashcard_set.all()), numofflashcards)
with self.assertRaises(Flashcard.DoesNotExist):
Flashcard.objects.get(pk=2)
with self.assertRaises(Flashcard.DoesNotExist):
Flashcard.objects.get(pk=7)
self.assertIsNotNone(persistingFc)
self.assertEqual(len(persistingFc.boxes.all()), 1)
示例2: deleteFlashcards
# 需要導入模塊: from flashcardapp.datacontroller import DataController [as 別名]
# 或者: from flashcardapp.datacontroller.DataController import deleteFlashcards [as 別名]
def deleteFlashcards(request, data):
'''Ajax wrapper for the DataController function 'deleteFlashcards'.
*Takes*
**data** - A Dictionary indexed by box ids to a list of Flashcard ids
*Example*: {boxId: [flashcardids], boxId: [flashcardIds],...}
*Returns*
A json string representing the success or failure of the delete
See the DataController documentation for more information
'''
dc = DataController()
return dc.deleteFlashcards(data)