summaryrefslogtreecommitdiff
path: root/spec/ruby/library/datetime/to_datetime_spec.rb
blob: 95ee29268f763c5b6407322039d6c5f6419eb5a2 (plain)
1
2
3
4
5
6
7
8
9
require_relative '../../spec_helper'
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