view tests.py @ 12:8a595d55e245

Changed back to lists from radio buttons. Now test runs and logs results
author Daniele Barchiesi <daniele.barchiesi@eecs.qmul.ac.uk>
date Tue, 12 Mar 2013 15:11:39 +0000
parents 032bc65ebafc
children
line wrap: on
line source
from DirectorySession import DirectorySession
import cherrypy

def test():
	cherrypy.session['x'] = [1,2,3]

	x = cherrypy.session['x']

	print x
	
	
test()