I\'m trying to check if a find method returns a result. My find method is the following:
post = Post.find(:all, :conditions => { :url => params[\'url\'] },
You can try ActiveRecord::Base.exists? before
Post.exists?(:conditions => { :url => params['url'] })