예제 #1
0
파일: test.py 프로젝트: itsnikka/trello-rss
 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
파일: test.py 프로젝트: itsnikka/trello-rss
 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
파일: test.py 프로젝트: itsnikka/trello-rss
 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
파일: test.py 프로젝트: itsnikka/trello-rss
 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
파일: test.py 프로젝트: naiyt/trello-rss
	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
파일: test.py 프로젝트: naiyt/trello-rss
	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
파일: test.py 프로젝트: naiyt/trello-rss
	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
파일: test.py 프로젝트: naiyt/trello-rss
	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)