mirror of https://github.com/rails/rails
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:
parent
0ffb6c1625
commit
7cc27b7b79
|
@ -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]
|
||||
|
|
|
@ -177,6 +177,10 @@ end
|
|||
@attributes[key] = value
|
||||
end
|
||||
|
||||
def session_id
|
||||
""
|
||||
end
|
||||
|
||||
def update() end
|
||||
def close() end
|
||||
def delete() @attributes = {} end
|
||||
|
|
Loading…
Reference in New Issue