Renamed helpers to correspond to renamed Controller classes.
[merb_radiant.git] / radiant_specs / spec / scenarios / .svn / text-base / file_not_found_scenario.rb.svn-base
blob66828b38d3d145267f9a3fbb46010442ab39e8b2
1 class CustomFileNotFoundPage < FileNotFoundPage
2 end
4 class FileNotFoundScenario < Scenario::Base
5   uses :home_page
6   
7   def load
8     create_page "File Not Found", :slug => "missing", :class_name => "FileNotFoundPage"
9     create_page "Gallery" do
10       create_page "No Picture", :class_name => "CustomFileNotFoundPage"
11     end 
12   end
13 end