Hey,
I am refactoring some code for a Ruby library. this code includes a Date parser. One of the tests was to parse this string "2008-02-20T8:05:00-010:00" which is supposed to be iso8601.
The previous code would actually output : "Wed Feb 20 18:05:00 UTC 2008" My new code outputs that : "Wed Feb 20 16:05:00 UTC 2008"
My question, is : which one is the right one?
Time.parse in Ruby gives the second one... but again, I want to be 100% that the previous code AND test were buggy.
Could anyone tell me which one is right? (by maybe parsing the string with a library in another language? -I only know ruby-)
Thanks
