Skip to content

Instantly share code, notes, and snippets.

View keithcelt's full-sized avatar

Keith Swallow keithcelt

  • Los Angeles, CA
View GitHub Profile
@keithcelt
keithcelt / spec_helper.rb
Created March 16, 2012 14:14 — forked from sethbro/spec_helper.rb
Rails unit, functional and integration tests in Minitest spec format.
ENV["RAILS_ENV"] = "test"
require File.expand_path('../../config/environment', __FILE__)
require 'rubygems'
gem 'minitest'
require 'minitest/autorun'
require 'action_controller/test_case'
require 'miniskirt'
require 'capybara/rails'