mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fixed tests
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@767 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
41ea6963a3
commit
fd6abf0a59
2 changed files with 8 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
require 'test/unit'
|
||||
require File.dirname(__FILE__) + '/../../lib/action_view/helpers/form_options_helper'
|
||||
|
||||
class TimeZone
|
||||
class MockTimeZone
|
||||
attr_reader :name
|
||||
|
||||
def initialize( name )
|
||||
|
@ -21,6 +21,8 @@ class TimeZone
|
|||
end
|
||||
end
|
||||
|
||||
ActionView::Helpers::FormOptionsHelper::TimeZone = MockTimeZone
|
||||
|
||||
class FormOptionsHelperTest < Test::Unit::TestCase
|
||||
include ActionView::Helpers::FormOptionsHelper
|
||||
|
||||
|
|
|
@ -2,6 +2,8 @@ require 'test/unit'
|
|||
require File.dirname(__FILE__) + '/../../lib/action_view/helpers/url_helper'
|
||||
require File.dirname(__FILE__) + '/../../lib/action_view/helpers/tag_helper'
|
||||
|
||||
RequestMock = Struct.new("Request", :request_uri)
|
||||
|
||||
class UrlHelperTest < Test::Unit::TestCase
|
||||
include ActionView::Helpers::UrlHelper
|
||||
include ActionView::Helpers::TagHelper
|
||||
|
@ -40,11 +42,12 @@ class UrlHelperTest < Test::Unit::TestCase
|
|||
end
|
||||
|
||||
def test_link_unless_current
|
||||
@params = { "controller" => "weblog", "action" => "show"}
|
||||
@request = RequestMock.new("http://www.world.com")
|
||||
assert_equal "Showing", link_to_unless_current("Showing", :action => "show", :controller => "weblog")
|
||||
@request = RequestMock.new("http://www.notworld.com")
|
||||
assert "<a href=\"http://www.world.com\">Listing</a>", link_to_unless_current("Listing", :action => "list", :controller => "weblog")
|
||||
|
||||
@params = { "controller" => "weblog", "action" => "show", "id" => "1"}
|
||||
@request = RequestMock.new("http://www.world.com")
|
||||
assert_equal "Showing", link_to_unless_current("Showing", :action => "show", :controller => "weblog", :id => 1)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue