You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.3 KiB
77 lines
2.3 KiB
# encoding: UTF-8
|
|
require File.dirname(__FILE__) + '/test_helper'
|
|
|
|
class DateTest < Test::Unit::TestCase
|
|
|
|
# to_date
|
|
def test_create_date_with_traditional_date_format
|
|
assert_equal "2007-01-02", "2007/01/02".to_date.to_s
|
|
end
|
|
|
|
def test_create_date_with_brazilian_date_format
|
|
assert_equal "2007-12-13", "13/12/2007".to_date.to_s
|
|
end
|
|
|
|
def test_create_date_with_other_brazilian_date_format
|
|
assert_equal "2007-02-01", "01-02-2007".to_date.to_s
|
|
end
|
|
|
|
|
|
#to_s
|
|
def test_date_to_s_with_traditional_format
|
|
assert_equal "2007-02-01", "01/02/2007".to_date.to_s
|
|
end
|
|
|
|
#to_s_br
|
|
def test_date_to_s_br
|
|
assert_equal "13/12/2007", "13/12/2007".to_date.to_s_br
|
|
end
|
|
|
|
#to_s_br when date is nil
|
|
def test_date_to_s_br_when_date_is_nil
|
|
assert_equal "", nil.to_s_br
|
|
end
|
|
|
|
#valid?
|
|
def test_valid_when_date_format_is_traditional_and_valid_format_and_valid_civil
|
|
assert Date.valid?("2007/01/02"), "Should be a valid date"
|
|
end
|
|
|
|
def test_valid_when_date_format_is_brazilian_and_valid_format_and_valid_civil
|
|
assert Date.valid?("13/12/2007"), "Should be a valid date"
|
|
end
|
|
|
|
if RUBY_VERSION < '1.9'
|
|
# IMPORTANTE: Date#parse se comporta de forma diferente no ruby 1.9,
|
|
# por isso esse teste não é executado no 1.9, ate que haja uma solução melhor
|
|
def test_valid_when_date_format_is_invalid
|
|
assert !Date.valid?("13/12/200A"), "Should be a invalid date"
|
|
end
|
|
end
|
|
|
|
def test_valid_when_date_format_is_brazilian_and_valid_format_and_invalid_civil
|
|
assert !Date.valid?("00/00/0000"), "Should be a invalid date"
|
|
end
|
|
|
|
def test_month_names
|
|
expected = [nil] + %w[Janeiro Fevereiro Março Abril Maio Junho Julho Agosto Setembro Outubro Novembro Dezembro]
|
|
assert_equal expected, Date::MONTHNAMES
|
|
end
|
|
|
|
def test_days_names
|
|
assert_equal %w[Domingo Segunda-Feira Terça-Feira Quarta-Feira Quinta-Feira Sexta-Feira Sábado], Date::DAYNAMES
|
|
end
|
|
|
|
def test_abbr_monthnames
|
|
assert_equal [nil] + %w[Jan Fev Mar Abr Mai Jun Jul Ago Set Out Nov Dez], Date::ABBR_MONTHNAMES
|
|
end
|
|
|
|
def test_abbr_daysnames
|
|
assert_equal %w[Dom Seg Ter Qua Qui Sex Sáb], Date::ABBR_DAYNAMES
|
|
end
|
|
|
|
def test_date_translation_with_strftime
|
|
assert_equal "Dezembro Dez Sexta-Feira Sex", Date.parse("2008-12-05").strftime("%B %b %A %a")
|
|
end
|
|
end
|