method

open_session

Importance_1
Ruby on Rails latest stable (v2.3.4) - 0 notes - Class: ActionController::IntegrationTest

Method deprecated

This method is deprecated on the latest stable version of Rails. The last existing version (v1.2.6) is shown here.

open_session() public

Open a new session instance. If a block is given, the new session is yielded to the block before being returned.

  session = open_session do |sess|
    sess.extend(CustomAssertions)
  end

By default, a single session is automatically created for you, but you can use this method to open multiple sessions that ought to be tested simultaneously.

Show source
Register or log in to add new notes.