Skip to content

Instantly share code, notes, and snippets.

@willrjmarshall
Created September 26, 2011 06:26
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 willrjmarshall/1241713 to your computer and use it in GitHub Desktop.
Save willrjmarshall/1241713 to your computer and use it in GitHub Desktop.
require 'spec_helper'
require 'ruby-debug'
describe BroadcastsController do
before :all do
@user = User.make!
end
describe "Logged in" do
before do
sign_in :user, @user
end
it "should paginate the broadcasts index" do
end
it "should render edit" do
b = Broadcast.make!(:user => @user)
debugger
Broadcast.last.should == b
get :edit, :id => b.id
response.should render_template "broadcasts/edit"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment