本文整理汇总了Python中flashcardapp.datacontroller.DataController.getFlashcard方法的典型用法代码示例。如果您正苦于以下问题:Python DataController.getFlashcard方法的具体用法?Python DataController.getFlashcard怎么用?Python DataController.getFlashcard使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类flashcardapp.datacontroller.DataController
的用法示例。
在下文中一共展示了DataController.getFlashcard方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: getFlashcard
# 需要导入模块: from flashcardapp.datacontroller import DataController [as 别名]
# 或者: from flashcardapp.datacontroller.DataController import getFlashcard [as 别名]
def getFlashcard(request, flashcardId):
''' Ajax wrapper for the DataController function 'getFlashcard'
*Returns*
A Flashcard with the given id encoded in json
See the DataController documentation for more information
'''
dc = DataController()
return dc.getFlashcard(flashcardId)
示例2: test_getFlashcard
# 需要导入模块: from flashcardapp.datacontroller import DataController [as 别名]
# 或者: from flashcardapp.datacontroller.DataController import getFlashcard [as 别名]
def test_getFlashcard(self):
"""
Steps this test will run:
1. Create a new DataController
2. Call the DataController's 'getFlashcard' method
3. Validates and decodes the json returned
4. Assert the message is the success message
5. Assert all the keys specified by the 'getFlashcard' docstring are in
the dictionary
"""
keys = ['id', 'term', 'defaultSideLabel_id', 'textsides']
dc = DataController()
jsonStr = dc.getFlashcard(2)
data = json.loads(jsonStr)
self.assertEqual(data['message'], DataController.SUCCESS_STR)
fDict = data['flashcard']
for key in keys:
self.assertIn(key, fDict)
textsides = fDict['textsides']
self.assertEqual(len(textsides), 3)
for ts in textsides:
self.assertIn('label', ts)