Skip to content

Instantly share code, notes, and snippets.

@Lytol
Created February 17, 2011 22:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lytol/832875 to your computer and use it in GitHub Desktop.
Save Lytol/832875 to your computer and use it in GitHub Desktop.
require 'spec_helper'
describe ApplicationController do
controller do
def public; head :ok; end
end
it "should be successful" do
get :public
response.should be_ok
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment