class Shoulda::ActionController::Matchers::RenderWithLayout

def layout

def layout
  layout = @controller.response.layout
  if layout.nil?
    nil
  else
    layout.split('/').last
  end
end