Пример #1
0
 def test_get_from_private_some(self):
     # Test 6 - get_from, with a private board and some fields
     test_6 = TrelloRSS(key, token)
     test_6.get_from(private_board,
                     public_board=False,
                     items=['cards', 'comments'])
Пример #2
0
 def test_get_from_public_some(self):
     # Test 4 - get_from, with a public board and some fields
     test_4 = TrelloRSS(key)
     test_4.get_from(public_board,
                     public_board=True,
                     items=['boards', 'lists'])
Пример #3
0
 def test_get_from_private_all(self):
     #  Test 5 - get_from, with a private board and all fields
     test_5 = TrelloRSS(key, token)
     test_5.get_from(private_board, public_board=False)
Пример #4
0
 def test_get_from_public_all(self):
     # Test 3 - get_from, with a public board and all fields
     test_3 = TrelloRSS(key)
     test_3.get_from(public_board, public_board=True, num=20)
Пример #5
0
	def test_get_from_private_some(self):
		# Test 6 - get_from, with a private board and some fields
		test_6 = TrelloRSS(key,token)
		test_6.get_from(private_board, public_board=False,items=['cards','comments'])
Пример #6
0
	def test_get_from_private_all(self):
		#  Test 5 - get_from, with a private board and all fields
		test_5 = TrelloRSS(key,token)
		test_5.get_from(private_board, public_board=False)
Пример #7
0
	def test_get_from_public_some(self):
		# Test 4 - get_from, with a public board and some fields
		test_4 = TrelloRSS(key)
		test_4.get_from(public_board, public_board=True, items=['boards','lists'])
Пример #8
0
	def test_get_from_public_all(self):
		# Test 3 - get_from, with a public board and all fields
		test_3 = TrelloRSS(key)
		test_3.get_from(public_board, public_board=True, num=20)