challenge_carry_my_luggage
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_carry_my_luggage.carry_my_luggage import CarryMyLuggage
13  robot = Mockbot()
14  CarryMyLuggage(robot)
15 
16 
17 if __name__ == '__main__':
18  unittest.main()
test_construction.TestChallengeConstruction
Definition: test_construction.py:5
challenge_carry_my_luggage.carry_my_luggage
Definition: carry_my_luggage.py:1
test_construction.TestChallengeConstruction.test_construction
def test_construction(self)
Definition: test_construction.py:6