Advertisement
Guest User

Spec

a guest
Jun 16th, 2015
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.36 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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement