Skip to content
This repository has been archived by the owner on Sep 7, 2022. It is now read-only.

Commit

Permalink
Implement basic test
Browse files Browse the repository at this point in the history
  • Loading branch information
mali-git committed Jan 3, 2019
1 parent b72f706 commit 5897576
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-

"""Tests for BioKEEN."""
15 changes: 15 additions & 0 deletions tests/test_simple.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# -*- coding: utf-8 -*-

"""Simple tests for BioKEEN."""

import unittest

from biokeen.constants import VERSION


class TestImport(unittest.TestCase):
"""Simple tests for importing BioKEEN."""

def test_version_type(self):
"""Test the type of the version string."""
self.assertIsInstance(VERSION, str)

0 comments on commit 5897576

Please sign in to comment.