Sha256: ef68ef40312eca085ecaf0bfe36d508c95756808ff546e5c233fbf821748c078

Contents?: true

Size: 1.53 KB

Versions: 6

Compression:

Stored size: 1.53 KB

Contents

# Filters added to this controller apply to all controllers in the application.
# Likewise, all the methods added will be available for all controllers.

class ApplicationController < ActionController::Base
  helper :all # include all helpers, all the time
  protect_from_forgery # See ActionController::RequestForgeryProtection for details

  # Scrub sensitive parameters from your log
  # filter_parameter_logging :password
  
  include SpecHelper
  
  def pulse
    render :text => '1'
  end
  
  def should_have_valid_schema_action
    before_each false, true
    should_have_valid_schema
    render :text => '1'
  end
  
  def should_create_records_action
    before_each false, true
    should_create_records
    render :text => '1'
  end
  
  def should_migrate_record_and_preserve_deleted_at_action
    before_each false, true
    should_migrate_record_and_preserve_deleted_at
    render :text => '1'
  end
  
  def should_emulate_delete_all_action
    before_each false, true
    should_emulate_delete_all
    render :text => '1'
  end
  
  def should_move_records_back_to_original_tables_action
    before_each false, true
    should_move_records_back_to_original_tables(params[:type])
    render :text => '1'
  end
  
  def should_move_records_to_archive_tables_action
    before_each false, true
    should_move_records_to_archive_tables(params[:type])
    render :text => '1'
  end
  
  def should_delete_records_without_archiving_action
    before_each false, true
    should_delete_records_without_archiving(params[:type])
    render :text => '1'
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
acts_as_archive-0.4.1 spec/fixtures/frameworks/rails2/application_controller.rb
rylwin-acts_as_archive-0.4.0 spec/fixtures/frameworks/rails2/application_controller.rb
acts_as_archive-0.4.0 spec/fixtures/frameworks/rails2/application_controller.rb
acts_as_archive-0.3.4 spec/fixtures/frameworks/rails2/application_controller.rb
acts_as_archive-0.3.3 spec/fixtures/frameworks/rails2/application_controller.rb
acts_as_archive-0.3.2 spec/fixtures/frameworks/rails2/application_controller.rb