component extends="org.lucee.cfml.test.LuceeTestCase"{ function run( testResults , testBox ) { describe( title="Test suite for LDEV-1497", body=function() { it(title="checks for existence of session variable after sessionrotate() in same request", body = function( currentSpec ) { session.a = now(); sessionrotate(); session.b = now(); expect( session ).toHaveKey( 'b' ); }); }); } }