Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_package.py 246B

123456789101112
  1. from __future__ import absolute_import
  2. import billiard
  3. from .utils import Case
  4. class test_billiard(Case):
  5. def test_has_version(self):
  6. self.assertTrue(billiard.__version__)
  7. self.assertIsInstance(billiard.__version__, str)