I have the following project skeleton.
ex47
bin/
docs/
ex47/
__init__.py
tests/
__init__.py
game_tests.py
game.py
setup.py
Working on Aptana Studio. In game_tests.py I have
from nose.tools import *
from ex47.game import Room
but Aptana is yelling at me for not being able to find Room, which I defined in 'game.py' as a
class. When I run nosetests on command line I got Error: Import Error( no module named game).
What's seems to be wrong?
__init__.pyin the top level ex47 dir?