mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-19 08:40:12 +01:00
Removed superfluous 'tracks' directory at the root of the repository.
Testing commits to github.
This commit is contained in:
parent
6a42901514
commit
4cbf5a34d3
2269 changed files with 0 additions and 0 deletions
29
vendor/plugins/selenium-on-rails/test/setup_test.rb
vendored
Normal file
29
vendor/plugins/selenium-on-rails/test/setup_test.rb
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
require File.dirname(__FILE__) + '/test_helper'
|
||||
|
||||
class SetupTest < Test::Unit::TestCase
|
||||
def setup
|
||||
@controller = SeleniumController.new
|
||||
@request = ActionController::TestRequest.new
|
||||
@response = ActionController::TestResponse.new
|
||||
end
|
||||
|
||||
def test_session_reset
|
||||
@request.session['key'] = 'value'
|
||||
get :setup
|
||||
assert_nil session['key']
|
||||
assert_response :success
|
||||
assert_tag :content => 'The session is wiped clean.'
|
||||
end
|
||||
|
||||
def test_session_no_reset
|
||||
@request.session['key'] = 'value'
|
||||
get :setup, :keep_session => true
|
||||
assert_equal 'value', session['key']
|
||||
assert_response :success
|
||||
assert_no_tag :content => 'The session is wiped clean.'
|
||||
end
|
||||
|
||||
#
|
||||
# Don't have the nerve to test fixtures since this is a plugin
|
||||
#
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue