% wizard_steps.each do |s| %>
<%= s.inspect %>
<%= current_step?(s) ? "#{s} step is the current step" : "nope" %>
<%= past_step?(s) ? "#{s} step is a past step" : "nope" %>
<%= future_step?(s) ? "#{s} step is a future step" : "nope" %>
<%= previous_step?(s) ? "#{s} step was the previous step" : "nope" %>
<%= next_step?(s) ? "#{s} step is the next step" : "nope" %>