2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../../spec_helper'
|
2017-05-07 12:04:49 +00:00
|
|
|
require 'cgi'
|
|
|
|
|
|
|
|
describe "CGI::Cookie#domain" do
|
|
|
|
it "returns self's domain" do
|
|
|
|
cookie = CGI::Cookie.new("test-cookie")
|
|
|
|
cookie.domain.should be_nil
|
|
|
|
|
|
|
|
cookie = CGI::Cookie.new("name" => "test-cookie", "domain" => "example.com")
|
|
|
|
cookie.domain.should == "example.com"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "CGI::Cookie#domain=" do
|
|
|
|
it "sets self's domain" do
|
|
|
|
cookie = CGI::Cookie.new("test-cookie")
|
|
|
|
cookie.domain = "test.com"
|
|
|
|
cookie.domain.should == "test.com"
|
|
|
|
|
|
|
|
cookie.domain = "example.com"
|
|
|
|
cookie.domain.should == "example.com"
|
|
|
|
end
|
|
|
|
end
|