require 'spec_helper' describe 'deprecated time, datetime and date inputs' do include FormtasticSpecHelper before do @output_buffer = '' mock_everything end it 'should warn :time is deprecated' do ::ActiveSupport::Deprecation.should_receive(:warn) semantic_form_for(@new_post) do |f| concat(f.input :created_at, :as => :time) end end it 'should warn :datetime is deprecated' do ::ActiveSupport::Deprecation.should_receive(:warn) semantic_form_for(@new_post) do |f| concat(f.input :created_at, :as => :datetime) end end it 'should warn :date is deprecated' do ::ActiveSupport::Deprecation.should_receive(:warn) semantic_form_for(@new_post) do |f| concat(f.input :created_at, :as => :date) end end it 'should use wrapper css class based off :as, not off their parent class' do with_deprecation_silenced do concat(semantic_form_for(@new_post) do |f| concat(f.input :created_at, :as => :time) concat(f.input :created_at, :as => :datetime) concat(f.input :created_at, :as => :date) end) end output_buffer.should have_tag('div.control-group.time') output_buffer.should have_tag('div.control-group.datetime') output_buffer.should have_tag('div.control-group.date') output_buffer.should_not have_tag('li.time_select') output_buffer.should_not have_tag('li.datetime_select') output_buffer.should_not have_tag('li.date_select') end end