I am testing the 'settings' action, in my Blog controller

  def settings
    @blog = Blog.find(params[:id])
    @setting_form = "settings"
  end

I wrote the following assertions :

    get :settings, :id => @blog[:id]
    assert_not_nil assigns(:blog)
    assert_equal "settings", assigns(:setting_form)

but I get a failure on the assigns(:setting_form) assertion, with diff
nil ... strange ??  what's up ? any clue ?
<> expected but was
<>
diff:
  nil

thanks for our feedback

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to