Rosetta
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
test_basic.py
Go to the documentation of this file.
1 import unittest
2 
3 class TestInitialization(unittest.TestCase):
4  def test_import(self):
5  import rosetta
6 
7  def test_init(self):
8  import rosetta
9  rosetta.init()
10 
11  def test_pose_creation(self):
12  import rosetta
13  rosetta.init()
14  test_pose = rosetta.pose_from_sequence("TESTTEST")