Sha256: 7f7914877ad266995576e605a1ce68d57aae22b9d6b2e935ac5fc91bce3fe448
Contents?: true
Size: 828 Bytes
Versions: 25
Compression:
Stored size: 828 Bytes
Contents
require 'test/unit' # Load the environment unless defined? RADIANT_ROOT ENV["RAILS_ENV"] = "test" case when ENV["RADIANT_ENV_FILE"] require ENV["RADIANT_ENV_FILE"] when File.dirname(__FILE__) =~ %r{vendor/radiant/vendor/extensions} require "#{File.expand_path(File.dirname(__FILE__) + "/../../../../../../")}/config/environment" else require "#{File.expand_path(File.dirname(__FILE__) + "/../../../../")}/config/environment" end end require "#{RADIANT_ROOT}/test/test_helper" class Test::Unit::TestCase # Include a helper to make testing Radius tags easier test_helper :extension_tags # Add the fixture directory to the fixture path self.fixture_path << File.expand_path(File.dirname(__FILE__)) + '/fixtures' # Add more helper methods to be used by all extension tests here... end
Version data entries
25 entries across 25 versions & 3 rubygems