Last active
February 3, 2019 00:35
-
-
Save bjonnh/563f7a90d27846190b179bb3d36b9857 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import unittest | |
import rnaviewparser.rnaview_ast as ast | |
class TestNode(unittest.TestCase): | |
def test_repr(self): | |
node = ast.Node([]) | |
self.assertEqual(node.__repr__(), "Basic Node") | |
if __name__ == '__main__': | |
unittest.main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment