SitePoint Sponsor |
|
User Tag List
Results 1 to 4 of 4
-
May 8, 2006, 13:24 #1
- Join Date
- May 2002
- Location
- Berkeley
- Posts
- 76
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Need Help locating method in Rails API
I'm trying to find documentation for the get(), post(), delete() methods that can be used in functional tests. The "Agile Web Development" book states that these methods are convenience methods loaded by test_helper.rb.
Are the methods documented?
Thanks,
Steven
-
May 8, 2006, 18:16 #2
- Join Date
- Jun 2004
- Location
- California
- Posts
- 440
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
They are documented right around here:
http://manuals.rubyonrails.com/read/chapter/28#page72
This is the best documentation I've found for them.
-
May 9, 2006, 02:53 #3
or the API documentation:
http://api.rubyonrails.org/
then in the bottom frame just scroll through all the methods of Rails until you find get, post and delete.Erh
-
May 9, 2006, 06:26 #4
- Join Date
- May 2002
- Location
- Berkeley
- Posts
- 76
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Thanks guys.
@xmitchx, exactly what I was looking for.
@Mandibal, I think the methods in the api are for the IntegrationTest class.
Bookmarks