Contact: fumanchu@aminus.org

Log in as guest/geniusql to create tickets

Changeset 273

Show
Ignore:
Timestamp:
02/05/09 00:14:28
Author:
fumanchu
Message:

Made unreachable test skippable.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/geniusql/test/zoo_fixture.py

    r270 r273  
    14081408        self.assertEqual(int(data[0][0]), 42) 
    14091409         
    1410         raw_input("Disable the server and hit Enter.") 
     1410        perform = raw_input("Disable the server and hit Enter (or 'N' to skip).") 
     1411        if perform.lower().startswith('n'): 
     1412            print "skipped", 
     1413            return 
     1414         
    14111415        try: 
    14121416            db.fetch(test_sql, conn=conn)