Skip to content

Instantly share code, notes, and snippets.

@choxi
choxi / jobs_controller_spec.rb
Created April 28, 2011 13:49
Example of a Rails Controller Spec
###################### SPEC ######################
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
describe JobsController, "#new" do
context "admin" do
before(:each) do
session[:password] = ADMIN_PASSWORD
get :new
end