File: create_hit_test.py

package info (click to toggle)
python-boto 2.49.0-4.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 9,888 kB
  • sloc: python: 86,396; makefile: 112
file content (21 lines) | stat: -rw-r--r-- 525 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import unittest
import os
from boto.mturk.question import QuestionForm

from common import MTurkCommon

class TestHITCreation(MTurkCommon):
	def testCallCreateHitWithOneQuestion(self):
		create_hit_rs = self.conn.create_hit(
			question=self.get_question(),
			**self.get_hit_params()
			)

	def testCallCreateHitWithQuestionForm(self):
		create_hit_rs = self.conn.create_hit(
			questions=QuestionForm([self.get_question()]),
			**self.get_hit_params()
			)

if __name__ == '__main__':
	unittest.main()