mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Move spec/rubyspec to spec/ruby for consistency
* Other ruby implementations use the spec/ruby directory. [Misc #13792] [ruby-core:82287] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
75bfc6440d
commit
1d15d5f080
4370 changed files with 0 additions and 0 deletions
21
spec/ruby/library/time/httpdate_spec.rb
Normal file
21
spec/ruby/library/time/httpdate_spec.rb
Normal file
|
@ -0,0 +1,21 @@
|
|||
require File.expand_path('../../../spec_helper', __FILE__)
|
||||
require 'time'
|
||||
|
||||
describe "Time.httpdate" do
|
||||
it "parses RFC-2616 strings" do
|
||||
t = Time.utc(1994, 11, 6, 8, 49, 37)
|
||||
t.should == Time.httpdate("Sun, 06 Nov 1994 08:49:37 GMT")
|
||||
|
||||
# relies on Time.parse (not yet implemented)
|
||||
# t.should == Time.httpdate("Sunday, 06-Nov-94 08:49:37 GMT")
|
||||
|
||||
t.should == Time.httpdate("Sun Nov 6 08:49:37 1994")
|
||||
Time.utc(1995, 11, 15, 6, 25, 24).should == Time.httpdate("Wed, 15 Nov 1995 06:25:24 GMT")
|
||||
Time.utc(1995, 11, 15, 4, 58, 8).should == Time.httpdate("Wed, 15 Nov 1995 04:58:08 GMT")
|
||||
Time.utc(1994, 11, 15, 8, 12, 31).should == Time.httpdate("Tue, 15 Nov 1994 08:12:31 GMT")
|
||||
Time.utc(1994, 12, 1, 16, 0, 0).should == Time.httpdate("Thu, 01 Dec 1994 16:00:00 GMT")
|
||||
Time.utc(1994, 10, 29, 19, 43, 31).should == Time.httpdate("Sat, 29 Oct 1994 19:43:31 GMT")
|
||||
Time.utc(1994, 11, 15, 12, 45, 26).should == Time.httpdate("Tue, 15 Nov 1994 12:45:26 GMT")
|
||||
Time.utc(1999, 12, 31, 23, 59, 59).should == Time.httpdate("Fri, 31 Dec 1999 23:59:59 GMT")
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue