[Rails] Re: Writin Test case
May i know which testing framework u r using ?
Thanks
Best Regards
Fahim Babar Patel
On Friday, November 16, 2012 5:35:46 PM UTC+5:30, Avi wrote:
-- On Friday, November 16, 2012 5:35:46 PM UTC+5:30, Avi wrote:
Hello,How to pass dynamic data to the controller from a test case?
On Thursday, November 15, 2012 2:01:32 PM UTC+5:30, Avi wrote:Hello,I am new to writing test cases in ruby on rails.This is a controller codeI am using "test_helper" in our application.def edit@user = User.find_by_token(params[:id]) if @userif @user.sent_at < 24.hours.agoredirect_to root_url, :alert => "Expired"elsif @user.status == "Active"redirect_to root_url, :alert => "Invitation"else@user.status = "Active"if @user.saveredirect_to root_url, :notice => "Activated"elseredirect_to root_url, :alert => "Problem"endendendendHow to write testcase for this?Thanks.Avi
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/92QGSU-vNJsJ.
For more options, visit https://groups.google.com/groups/opt_out.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home