1 require File.dirname(__FILE__) + '/../../../spec_helper'
4 describe "CGI::Cookie#path" do
5 it "returns self's path" do
6 cookie = CGI::Cookie.new("test-cookie")
7 cookie.path.should == ""
9 cookie = CGI::Cookie.new("name" => "test-cookie", "path" => "/some/path/")
10 cookie.path.should == "/some/path/"
14 describe "CGI::Cookie#path=" do
15 it "sets self's path" do
16 cookie = CGI::Cookie.new("test-cookie")
17 cookie.path = "/some/path/"
18 cookie.path.should == "/some/path/"
20 cookie.path = "/another/path/"
21 cookie.path.should == "/another/path/"