mirror of
https://github.com/TracksApp/tracks.git
synced 2026-02-26 09:04:07 +01:00
freeze rails 2.2
This commit is contained in:
parent
fe5f962dcf
commit
59d5d4c8b6
1468 changed files with 213171 additions and 0 deletions
26
vendor/rails/actionpack/test/controller/translation_test.rb
vendored
Normal file
26
vendor/rails/actionpack/test/controller/translation_test.rb
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
require 'abstract_unit'
|
||||
|
||||
# class TranslatingController < ActionController::Base
|
||||
# end
|
||||
|
||||
class TranslationControllerTest < Test::Unit::TestCase
|
||||
def setup
|
||||
@controller = ActionController::Base.new
|
||||
end
|
||||
|
||||
def test_action_controller_base_responds_to_translate
|
||||
assert @controller.respond_to?(:translate)
|
||||
end
|
||||
|
||||
def test_action_controller_base_responds_to_t
|
||||
assert @controller.respond_to?(:t)
|
||||
end
|
||||
|
||||
def test_action_controller_base_responds_to_localize
|
||||
assert @controller.respond_to?(:localize)
|
||||
end
|
||||
|
||||
def test_action_controller_base_responds_to_l
|
||||
assert @controller.respond_to?(:l)
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue