ruby on rails 4 - Devise does not set notice messages -
my app rather barebones right now, might stupid mistake side. i'm testing cucumber signing out devise
scenario: user signs out   given logged in   when sign out   should see signed out message   everything pretty standard, i've set devise accept requests signing out, , logs appears work expected. problem last step, flash/notice message doesn't show up, weird (as devise, don't know who's setting , where...).
this layout view:
%body   - unless notice.blank?     %p.notice= notice   - unless alert.blank?     %p.alert= alert   = yield   what see blank page... i've checked locales, message there. sign_out call standard one. flash messages appear empty (blank).
what course of action suggest take in order debug this?
 
 
Comments
Post a Comment