Sha256: 7ebcfd3a6da0064ce40ed303e9ee781e8a2f45451a1ff22da5803f523470c993

Contents?: true

Size: 574 Bytes

Versions: 1

Compression:

Stored size: 574 Bytes

Contents

require 'test/unit'
# Load the the environment
unless defined? RADIANT_ROOT
  ENV["RAILS_ENV"] = "test"
  require "#{File.expand_path(File.dirname(__FILE__) + "/../../../../")}/config/environment"
end
require "#{RADIANT_ROOT}/test/test_helper"

class ActiveSupport::TestCase
  
  # Include a helper to make testing Radius tags easier
  test_helper :render
  
  # Add the fixture directory to the fixture path
  self.fixture_path << File.dirname(__FILE__) + "/fixtures"
  
  fixtures :users, :pages
  # Add more helper methods to be used by all extension tests here...
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
radiant-taginator-extension-2.0.beta1 test/test_helper.rb