view .svn/pristine/6d/6d24a0dc5e3b6f9a7f6072591c406a9d6ee664eb.svn-base @ 1082:997f6d7738f7 bug_531

In repo controller entry action, show the page for the file even if it's binary (so user still has access to history etc links). This makes it possible to use the entry action as the default when a file is clicked on
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 22 Nov 2012 18:04:17 +0000
parents cbb26bc654de
children
line wrap: on
line source
# Tests in this file ensure that:
#
# * translations in the application take precedence over those in plugins
# * translations in subsequently loaded plugins take precendence over those in previously loaded plugins

require File.dirname(__FILE__) + '/../test_helper'

class LocaleLoadingTest < ActionController::TestCase
  def setup
    @request    = ActionController::TestRequest.new
    @response   = ActionController::TestResponse.new
  end

  # app takes precedence over plugins
	
  def test_WITH_a_translation_defined_in_both_app_and_plugin_IT_should_find_the_one_in_app
    assert_equal I18n.t('hello'), 'Hello world'
  end
	
  # subsequently loaded plugins take precendence over previously loaded plugins
	
  def test_WITH_a_translation_defined_in_two_plugins_IT_should_find_the_latter_of_both
    assert_equal I18n.t('plugin'), 'beta'
  end
end