challenge_hand_me_that
test_construction.py
Go to the documentation of this file.
1 import os
2 import unittest
3 
4 
5 class TestChallengeConstruction(unittest.TestCase):
6  def test_construction(self):
7  """
8  If no exception is raised, this test will succeed
9  """
10  os.environ["ROBOT_ENV"] = "impuls"
11  from robot_skills.mockbot import Mockbot
12  from challenge_hand_me_that.hand_me_that import HandMeThat
13  robot = Mockbot()
14  HandMeThat(robot)
15 
16 
17 if __name__ == "__main__":
18  unittest.main()
test_construction.TestChallengeConstruction
Definition: test_construction.py:5
challenge_hand_me_that.hand_me_that
Definition: hand_me_that.py:1
test_construction.TestChallengeConstruction.test_construction
def test_construction(self)
Definition: test_construction.py:6