application_helper_spec.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
  2. describe ApplicationHelper do
  3.   helper_name 'application'
  4.   
  5.   describe '#render_flash' do
  6.     it 'should render empty string if no flash' do
  7.       render_flash.should == ''
  8.     end
  9.     it 'should render a good render if only one notice' do
  10.       flash[:notice] = 'good update'
  11.       render_flash.should == '<span class="notice">good update</span>'
  12.     end
  13.     it 'should render the notice and error flash' do
  14.       flash[:notice] = 'good update'
  15.       flash[:error] = "it's not good"
  16.       render_flash.split("<br />n").sort.should == ['<span class="error">it's not good</span>','<span class="notice">good update</span>']
  17.     end
  18.   end
  19. end