Displaying 2 results from an estimated 2 matches for "your_momma".
2007 Sep 23
4
Story Runner, autoincrementing
...;a forum named", "General" do |name|
@forum = create_forum name
puts @forum.id
end
And "user logged in successfully and was redirect to", "/" do |path|
post "/session/create", :login => "Jon", :password => "your_momma"
response.should redirect_to("/")
end
And "user is looking at", "/forums/1" do |path|
get path
response.should be_success
end
When "creating a new topic titled", "Nicks Mom" do |title|
post "/forum...
2007 Sep 22
1
Testing RESTful routes
Hi all,
The app I am making right now uses restful routing entirely. I want to
prevent people from accessing my actions without the proper HTTP verb so
I commented out the :controller/:action/:id catch all routes that were
used in pre-RESTful Rails apps. Like so:
#map.connect '':controller/:action/:id.:format''
#map.connect '':controller/:action/:id''