Sha256: 274f50950d32e6fe1eafcc5f00353bf0324cc0fc829164fcba0bfdbe238056fa

Contents?: true

Size: 1.11 KB

Versions: 6

Compression:

Stored size: 1.11 KB

Contents

# This file is copied to ~/spec when you run 'ruby script/generate rspec'
# from the project root directory.
ENV["RAILS_ENV"] = "test"
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
require 'spec/rails'

Spec::Runner.configure do |config|
  config.use_transactional_fixtures = true
  config.use_instantiated_fixtures  = false
  config.fixture_path = RAILS_ROOT + '/test/fixtures'
  config.global_fixtures =
    %w{ blacklist_patterns blogs categories categorizations contents
        feedback notifications page_caches profiles redirects resources sidebars
        tags text_filters triggers users }

  config.before(:each) do
    CachedModel.cache_reset
    Localization.lang = :default
  end

  # You can declare fixtures for each behaviour like this:
  #   describe "...." do
  #     fixtures :table_a, :table_b
  #
  # Alternatively, if you prefer to declare them only once, you can
  # do so here, like so ...
  #
  #   config.global_fixtures = :table_a, :table_b
  #
  # If you declare global fixtures, be aware that they will be declared
  # for all of your examples, even those that don't use them.
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
typo-5.0.3.98.1 spec/spec_helper.rb
typo-5.0.3.98 spec/spec_helper.rb
typo-5.1.2 spec/spec_helper.rb
typo-5.1.1 spec/spec_helper.rb
typo-5.1.3 spec/spec_helper.rb
typo-5.1 spec/spec_helper.rb