浏览 2409 次
锁定老帖子 主题:解决使用RSpec测试flash.now
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2007-12-27
module ActionController module Flash class FlashHash def initialize @hash = {} @now_hash = {} end def [](key) @hash[key] end def []=(key, obj) @hash[key] = obj end def discard(k = nil) initialize end def now @now_hash end def update(hash) @hash.update(hash) end def sweep # do nothing end end end end 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |