mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
4473d2fea2
* sample/cgi-session-pstore.rb: use IO::NULL instead of hard coded device name for portability. * sample/drb/ring_place.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47124 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
11 lines
328 B
Ruby
11 lines
328 B
Ruby
require 'cgi'
|
|
require 'cgi/session/pstore'
|
|
|
|
STDIN.reopen(IO::NULL)
|
|
cgi = CGI.new
|
|
session = CGI::Session.new(cgi, 'database_manager' => CGI::Session::PStore)
|
|
session['key'] = {'k' => 'v'}
|
|
puts session['key'].class
|
|
fail unless Hash === session['key']
|
|
puts session['key'].inspect
|
|
fail unless session['key'].inspect == '{"k"=>"v"}'
|