In Zed Shaw's "Learn Python the Hard Way" tutorial 46, students are asked to create
a tests/NAME_tests.py file. But I got / is not a valid character error in Aptana Studios
and Notepad++. What am I doing wrong?
Here's the code that Zed asks to put into that file.
from nose.tools import *
import NAME
def setup():
print "SETUP!"
def teardown():
print "TEAR DOWN!"
def test_basic():
print "I RAN!
testsand create a file calledNAME_tests.pyinside it.