Sha256: 5712f9f8a9ccc94baf1e1d108148597c607d6188870a0688300521794c790c1c

Contents?: true

Size: 1.21 KB

Versions: 4

Compression:

Stored size: 1.21 KB

Contents

# encoding: utf-8
require 'rubygems'
require 'test/unit'
require 'shoulda'

# wycats says...
require 'bundler'
Bundler.setup


ENV['RAILS_ENV'] = 'test'

$:.unshift File.dirname(__FILE__) # add current dir to LOAD_PATHS

require "dummy/config/environment"
require "rails/test_help" # adds stuff like @routes, etc.

gem_dir       = File.join(File.dirname(__FILE__), '..')
test_app_dir  = File.join(gem_dir, 'test', 'app')

# Important: Load any test ApplicationHelper before loading cells.
Dir[File.join(test_app_dir, *%w[helpers ** *.rb]).to_s].each { |f| require f }

require 'cells'

Cell::Rails.append_view_path(File.join(test_app_dir, 'cells'))
Cell::Rails.append_view_path(File.join(test_app_dir, 'cells', 'layouts'))

require "cell/test_case"
# Extend TestCase.
ActiveSupport::TestCase.class_eval do
  def assert_not(assertion)
    assert !assertion
  end
end

# Enable dynamic states so we can do Cell.class_eval { def ... } at runtime.
class Cell::Rails
  def action_method?(*); true; end
end

require File.join(test_app_dir, 'cells', 'bassist_cell')
require File.join(test_app_dir, 'cells', 'trumpeter_cell')
require File.join(test_app_dir, 'cells', 'bad_guitarist_cell')

require "haml"
require "haml/template" # Thanks, Nathan!

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cells-3.6.2 test/test_helper.rb
cells-3.6.1 test/test_helper.rb
cells-3.6.0 test/test_helper.rb
cells-3.5.6 test/test_helper.rb