aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/form_options_helper_i18n_test.rb
blob: 4f25d41fc9de5cb2e97a672ef07108638e88449a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'abstract_unit'

class FormOptionsHelperI18nTests < ActionView::TestCase
  tests ActionView::Helpers::FormOptionsHelper

  def setup
    @prompt_message = 'Select!'
    I18n.backend.store_translations :en, :support => { :select => { :prompt => @prompt_message} }
  end

  def test_select_with_prompt_true_translates_prompt_message
    I18n.expects(:translate).with('support.select.prompt', { :default => 'Please select' })
    select 'post', 'category', [], :prompt => true
  end

  def test_select_with_translated_prompt
    assert_dom_equal(
      %Q(<select id="post_category" name="post[category]"><option value="">#{@prompt_message}</option>\n</select>),
      select('post', 'category', [], :prompt => true)
    )
  end
end