Created test for bulk data

This commit is contained in:
Nanda Scott 2018-10-23 15:55:18 -04:00
parent 981d38744a
commit 3578469723
1 changed files with 54 additions and 0 deletions

54
unittests/TestBulk.py Normal file
View File

@ -0,0 +1,54 @@
# This workaround makes sure that we can import from the parent dir
import sys
sys.path.append('..')
from scrython.bulk_data import BulkData
import unittest
import time
bulk = BulkData()
class TestBulk(unittest.TestCase):
def test_object(self):
self.assertIsInstance(bulk.object(), str)
def test_has_more(self):
self.assertIsInstance(bulk.has_more(), bool)
def test_data(self):
self.assertIsInstance(bulk.data(), list)
def test_bulk_object(self):
self.assertIsInstance(bulk.bulk_object(0), str)
def test_bulk_id(self):
self.assertIsInstance(bulk.bulk_id(0), str)
def test_bulk_type(self):
self.assertIsInstance(bulk.bulk_type(0), str)
def test_bulk_updated_at(self):
self.assertIsInstance(bulk.bulk_updated_at(0), str)
def test_bulk_name(self):
self.assertIsInstance(bulk.bulk_name(0), str)
def test_bulk_description(self):
self.assertIsInstance(bulk.bulk_description(0), str)
def test_bulk_compressed_size(self):
self.assertIsInstance(bulk.bulk_compressed_size(0), int)
self.assertIsInstance(bulk.bulk_compressed_size(0, True), str)
def test_bulk_permalink_uri(self):
self.assertIsInstance(bulk.bulk_permalink_uri(0), str)
def test_bulk_content_type(self):
self.assertIsInstance(bulk.bulk_content_type(0), str)
def test_bulk_content_encoding(self):
self.assertIsInstance(bulk.bulk_content_encoding(0), str)
if __name__ == '__main__':
unittest.main()