Skip to content

Instantly share code, notes, and snippets.

View kfitzpatrick's full-sized avatar

Kevin Fitzpatrick kfitzpatrick

  • Forj
  • Berkeley, CA, USA
  • 10:03 (UTC -07:00)
View GitHub Profile
class DashboardController < ApplicationController
include Secured
def show
end
end
@kfitzpatrick
kfitzpatrick / Page Behaviors
Created April 29, 2011 21:47 — forked from mdowning/Page Behaviors
Page Behaviors Spec
describe("Page Behaviors", function () {
beforeEach(function() {
spyOn(window, "alert").andCallFake(function() {
});
});
describe("given a page behavior", function () {
beforeEach(function() {
BehaviorMap['.foo'] = function() {
alert("The Pentagon!");