diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 30b5b1f7e..509b1ad89 100644 Binary files a/db/development.sqlite3 and b/db/development.sqlite3 differ diff --git a/features/filter_movie_list.feature b/features/filter_movie_list.feature index 0e157f872..635eadd1e 100644 --- a/features/filter_movie_list.feature +++ b/features/filter_movie_list.feature @@ -28,8 +28,8 @@ Scenario: restrict to movies with 'PG' or 'R' ratings # enter step(s) to ensure that PG and R movies are visible # enter step(s) to ensure that other movies are not visible -Scenario: no checkboxes selected +Scenario: no ratings selected # see assignment -Scenario: all checkboxes selected +Scenario: all ratings selected # see assignment diff --git a/features/step_definitions/movie_steps.rb b/features/step_definitions/movie_steps.rb index 111b4f175..1f0da1161 100644 --- a/features/step_definitions/movie_steps.rb +++ b/features/step_definitions/movie_steps.rb @@ -5,6 +5,7 @@ # each returned element will be a hash whose key is the table header. # you should arrange to add that movie to the database here. end + assert false, "Unimplmemented" end # Make sure that one string (regexp) occurs before or after another one @@ -13,6 +14,7 @@ Then /I should see "(.*)" before "(.*)"/ do |e1, e2| # ensure that that e1 occurs before e2. # page.content is the entire content of the page as a string. + assert false, "Unimplmemented" end # Make it easier to express checking or unchecking several boxes at once