Methods
D
R
S
U
Instance Public methods
dont_set_flash()
# File actionpack/test/controller/flash_test.rb, line 217
def dont_set_flash
  head :ok
end
redirect_without_flash()
# File actionpack/test/controller/flash_test.rb, line 235
def redirect_without_flash
  redirect_to '/somewhere'
end
set_flash()
# File actionpack/test/controller/flash_test.rb, line 221
def set_flash
  flash["that"] = "hello"
  head :ok
end
set_flash_now()
# File actionpack/test/controller/flash_test.rb, line 226
def set_flash_now
  flash.now["that"] = "hello"
  head :ok
end
use_flash()
# File actionpack/test/controller/flash_test.rb, line 231
def use_flash
  render :inline => "flash: #{flash["that"]}"
end