Skip to content

Instantly share code, notes, and snippets.

@jkatz
Created January 25, 2010 16:59
Show Gist options
  • Save jkatz/286017 to your computer and use it in GitHub Desktop.
Save jkatz/286017 to your computer and use it in GitHub Desktop.
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
describe Events::TrackingController, 'blah' do
integrate_views
describe 'GET show' do
before do
event = EventSim.create!
get :show, :event_id => event.to_param
end
it 'should be successful' do
response.should be_success
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment