Added TestSession#session_id that returns an empty string to make it easier to functional test applications that doesn't use cookie-based sessions #275 [jcf]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@52 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2004-12-06 18:51:04 +00:00
parent 0ffb6c1625
commit 7cc27b7b79
2 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,8 @@
*SVN*
* Added TestSession#session_id that returns an empty string to make it easier to functional test applications that doesn't use
cookie-based sessions [jcf]
* Fixed that cached template loading would still check the file system to see if the file existed #258 [Andreas Schwarz]
* Added options to tailor header tag, div id, and div class on ActiveRecordHelper#error_messages_for [josh]

View File

@ -177,6 +177,10 @@ end
@attributes[key] = value
end
def session_id
""
end
def update() end
def close() end
def delete() @attributes = {} end