Slide 27
Slide 27 text
“HELPER” SIDE EFFECTS
def cake_deliciousness(cake)
if cake && cake.eat =~ /omnomnom/
content_tag(:h4, "Mmm Delicious")
else
content_tag(:h4, "Average")
end
end
def cake_servings(cake)
if cake.slices?
content_tag(:h4, cake.slices )
else
content_tag(:h4, "The cake has been eated!" )
end
end
<%= cake_deliciousness(@cake) %>
=>
Mmm Delicious
<%= cake_servings(@cake) %>
=> The cake has been eated!
cake.html.erb
cake_helper.rb
a cake can only be tested by eating it!
Wednesday, 11 January 12