summaryrefslogtreecommitdiff
path: root/spec/ruby/library/datetime/to_datetime_spec.rb
blob: e4db9558f195b53969279370bd0603c06859d92f (plain)
1
2
3
4
5
6
7
8
9
require File.expand_path('../../../spec_helper', __FILE__)
require 'date'

describe "DateTime#to_datetime" do
  it "returns itself" do
    dt = DateTime.new(2012, 12, 24, 12, 23, 00, '+05:00')
    dt.to_datetime.should == dt
  end
end