Created
September 26, 2011 06:16
-
-
Save willrjmarshall/1241705 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'spec_helper' | |
| require 'ruby-debug' | |
| describe BroadcastsController do | |
| before :each do | |
| @user = User.make! | |
| sign_in :user, @user | |
| end | |
| it "should paginate the broadcasts index" do | |
| end | |
| it "should render edit" do | |
| b = Broadcast.make!(:user => @user) | |
| Broadcast.last.should == b | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment