Sha256: bace27f60ebae8354d9c88e5877b0a02f9c9be9a326bd34ca33a3a23e56de054
Contents?: true
Size: 1.15 KB
Versions: 3
Compression:
Stored size: 1.15 KB
Contents
require File.join(File.dirname(__FILE__), '..', '..', 'spec_helper') describe Hash, "#to_http_str" do before(:each) do @http_params = {:id => 'otherlogin', :since_id => 3953743, :full_name => 'Lucy Cross'} @id_regexp = Regexp.new("id=#{CGI.escape(@http_params[:id].to_s)}") @since_id_regexp = Regexp.new("since_id=#{CGI.escape(@http_params[:since_id].to_s)}") @full_name_regexp = Regexp.new("full_name=Lucy\\+Cross") end it "should generate expected URL encoded string" do http_str = @http_params.to_http_str http_str.should match(@id_regexp) http_str.should match(@since_id_regexp) http_str.should match(@full_name_regexp) end after(:each) do @http_params = nil @id_kv_str, @since_id_kv_str, @full_name_kv_str = nil end end describe Time, "#to_s" do before(:each) do @time = Time.now @expected_string = @time.rfc2822 end it "should output RFC2822 compliant string" do time_string = @time.to_s time_string.should eql(@expected_string) end it "should respond to #old_to_s" do @time.should respond_to(:old_to_s) end after(:each) do nilize(@time, @expected_string) end end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
dambalah-twitter4r-0.3.1 | spec/twitter/ext/stdlib_spec.rb |
dambalah-twitter4r-0.3.2 | spec/twitter/ext/stdlib_spec.rb |
mbbx6spp-twitter4r-0.3.1 | spec/twitter/ext/stdlib_spec.rb |