コード例 #1
0
 def insert_project(self):
     p = Project()
     p.title = "Example Project"
     p.comment = "This is an example project for the Django tests"
     p.save()
     return p
コード例 #2
0
ファイル: test_common_apis.py プロジェクト: tomka/CATMAID
 def insert_project(self):
     p = Project()
     p.title = "Example Project"
     p.comment = "This is an example project for the Django tests"
     p.save()
     return p