Mercurial > parpg-core
comparison tests/test_container.py @ 94:0a2cc748d16b
Fixed container and lockable test. They where using the old name of the parpg grease module.
author | KarstenBock@gmx.net |
---|---|
date | Wed, 21 Sep 2011 16:12:19 +0200 |
parents | c017773e8443 |
children | 7fc3acada7e0 |
comparison
equal
deleted
inserted
replaced
93:0ea341301461 | 94:0a2cc748d16b |
---|---|
15 # You should have received a copy of the GNU General Public License | 15 # You should have received a copy of the GNU General Public License |
16 # along with PARPG. If not, see <http://www.gnu.org/licenses/>. | 16 # along with PARPG. If not, see <http://www.gnu.org/licenses/>. |
17 | 17 |
18 import unittest | 18 import unittest |
19 | 19 |
20 from parpg.grease.world import BaseWorld | 20 from parpg.bGrease.world import BaseWorld |
21 from parpg.grease.entity import Entity | 21 from parpg.bGrease.entity import Entity |
22 from parpg.components import containable, container | 22 from parpg.components import containable, container |
23 | 23 |
24 class TestContainer(unittest.TestCase): | 24 class TestContainer(unittest.TestCase): |
25 class GameWorld(BaseWorld): | 25 class GameWorld(BaseWorld): |
26 """GameWorld""" | 26 """GameWorld""" |