saasbook

movies_controller_spec.2.rb

Aug 16th, 2013
637
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.35 KB | None | 0 0
  1. require 'spec_helper'
  2.  
  3. describe MoviesController do
  4.   describe 'searching TMDb' do
  5.     it 'should call the model method that performs TMDb search' do
  6.       post :search_tmdb, {:search_terms => 'hardware'}
  7.     end
  8.     it 'should select the Search Results template for rendering'
  9.     it 'should make the TMDb search results available to that template'
  10.   end
  11. end
Add Comment
Please, Sign In to add comment