clairelee/directable

View on GitHub
spec/controllers/productions_controller_spec.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'spec_helper'

# This spec was generated by rspec-rails when you ran the scaffold generator.
# It demonstrates how one might use RSpec to specify the controller code that
# was generated by Rails when you ran the scaffold generator.
#
# It assumes that the implementation code is generated by the rails scaffold
# generator.  If you are using any extension libraries to generate different
# controller code, this generated spec may or may not pass.
#
# It only uses APIs available in rails and/or rspec-rails.  There are a number
# of tools you can use to make these specs even more expressive, but we're
# sticking to rails and rspec-rails APIs to keep things simple and stable.
#
# Compared to earlier versions of this generator, there is very limited use of
# stubs and message expectations in this spec.  Stubs are only used when there
# is no simpler way to get a handle on the object needed for the example.
# Message expectations are only used when there is no simpler way to specify
# that an instance is receiving a specific message.

describe ProductionsController do
  before (:each) do
    controller.class.skip_before_filter :require_login
    request.env["omniauth.auth"] = OmniAuth.config.mock_auth[:facebook] 
    @production = double("New Production")
    Production.stub(:new).and_return(@production)
  end
  
  describe 'creating a new production' do
    it 'should redirect to the home page upon success' do
      @production.stub(:save).and_return(true)
      @production.stub(:name).and_return("Successful Production")
      
      post :create, :production => {:name => "Sucessful Production"}
      response.should redirect_to notes_home_path
    end
    
    it 'should redirect to create new production page upon failure' do
      @production.stub(:save).and_return(false)
      @production.stub(:name).and_return("Failed Production")
      
      post :create, :production => {:name => "Failed Production"}
      response.should redirect_to new_production_path
    end
  end

end