Sha256: c4aaaa88bd685d9233a16819877d7e2bafc7de86e812a648b9865450ea4f3dc2

Contents?: true

Size: 270 Bytes

Versions: 4

Compression:

Stored size: 270 Bytes

Contents

class DummyController < ApplicationController
  def index
    expected_flash = {
    'errors' => "This is an Error",
    'notice' => "This is a Notice"
    }
    flash[:errors] = expected_flash['errors']
    flash[:notice] = expected_flash['notice']
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cacheable_flash-0.2.8 spec/dummy/app/controllers/dummy_controller.rb
cacheable_flash-0.2.7 spec/dummy/app/controllers/dummy_controller.rb
cacheable_flash-0.2.5 spec/dummy/app/controllers/dummy_controller.rb
cacheable_flash-0.2.4 spec/dummy/app/controllers/dummy_controller.rb