aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/test/core_ext/date_ext_test.rb
blob: 71c2ed1f3a524cd9fe9ad84dcadacb8460e7930a (plain) (tree)
1
2
3
4
5
6
7
8
                                                    





                                                                        
 


                                                                       
 


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

class DateExtCalculationsTest < Test::Unit::TestCase
  def test_to_s
    assert_equal "21 Feb",            Date.new(2005, 2, 21).to_s(:short)
    assert_equal "February 21, 2005", Date.new(2005, 2, 21).to_s(:long)
  end

  def test_to_time
    assert_equal Time.local(2005, 2, 21), Date.new(2005, 2, 21).to_time
  end

  def test_to_date
    assert_equal Date.new(2005, 2, 21), Date.new(2005, 2, 21).to_date
  end
end