mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-20 17:20: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
70
vendor/plugins/selenium-on-rails/test/test_helper.rb
vendored
Normal file
70
vendor/plugins/selenium-on-rails/test/test_helper.rb
vendored
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
ENV["RAILS_ENV"] = "test"
|
||||
require File.expand_path(File.dirname(__FILE__) + "/../../../../config/environment")
|
||||
require 'test_help'
|
||||
require 'controllers/selenium_controller'
|
||||
|
||||
module SeleniumOnRails::Paths
|
||||
def selenium_tests_path
|
||||
File.expand_path(File.dirname(__FILE__) + '/../test_data')
|
||||
end
|
||||
end
|
||||
|
||||
class SeleniumController
|
||||
attr_accessor :layout_override
|
||||
# Re-raise errors caught by the controller.
|
||||
def rescue_action e
|
||||
raise e
|
||||
end
|
||||
|
||||
def render options = nil, deprecated_status = nil
|
||||
if override_layout? options
|
||||
options[:layout] = false
|
||||
super options, deprecated_status
|
||||
return response.body = @layout_override.gsub('@content_for_layout', response.body)
|
||||
end
|
||||
super options, deprecated_status
|
||||
end
|
||||
|
||||
private
|
||||
def override_layout? options
|
||||
return false unless @layout_override
|
||||
if options[:action] or options[:template]
|
||||
options[:layout] != false #for action and template the default layout is used if not explicitly disabled
|
||||
else
|
||||
not [nil, false].include? options[:layout] #otherwise a layout has to be specified
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
class Test::Unit::TestCase
|
||||
def assert_text_equal expected, actual
|
||||
assert_equal clean_text(expected), clean_text(actual)
|
||||
end
|
||||
|
||||
def clean_text text
|
||||
text.gsub("\t", ' ').gsub("\r", '').gsub("\n", '').gsub(/ *</, '<')
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
class TestView < ActionView::Base
|
||||
include SeleniumOnRails::PartialsSupport
|
||||
|
||||
alias_method :render_partial_without_override, :render_partial
|
||||
def render_partial partial_path = default_template_name, object = nil, local_assigns = nil, status = nil
|
||||
if @override
|
||||
partial = render :inline => @override, :type => @override_type, :locals => local_assigns
|
||||
extract_commands_from_partial partial
|
||||
else
|
||||
render_partial_without_override partial_path, object, local_assigns, status
|
||||
end
|
||||
end
|
||||
|
||||
def override_partial partial, type
|
||||
@override, @override_type = partial, type
|
||||
result = yield
|
||||
@override, @override_type = nil, nil
|
||||
result
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue