forked from aren19-zz/hw4_rottenpotatoes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Empty controller method and empty view to help get started with initi…
…al specs
- Loading branch information
1 parent
b159472
commit ec6d6f6
Showing
3 changed files
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
require 'spec_helper' | ||
|
||
describe MoviesController do | ||
|
||
describe 'searching TMDb' do | ||
it 'should call the model method that performs TMDb search' do | ||
post :search_tmdb, :params => {:search_terms => 'hardware'} | ||
end | ||
it 'should select the Search Results template for rendering' | ||
it 'should make the TMDb search results available to that template' | ||
end | ||
end |