Sha256: b58f36fdd8be5e648a695fe8d9da30a477dc91152fb2d1c743dc2cadf08f8934

Contents?: true

Size: 1.38 KB

Versions: 1

Compression:

Stored size: 1.38 KB

Contents

# coding: utf-8
require File.dirname(__FILE__) + '/../spec_helper'

describe 'numeric input' do
  
  include FormtasticSpecHelper
  
  before do
    @output_buffer = ActiveSupport::SafeBuffer.new
    mock_everything
    
    semantic_form_for(@new_post) do |builder|
      concat(builder.input(:title, :as => :numeric))
    end
  end

  it_should_have_input_wrapper_with_class(:numeric)
  it_should_have_input_wrapper_with_id("post_title_input")
  it_should_have_label_with_text(/Title/)
  it_should_have_label_for("post_title")
  it_should_have_input_with_id("post_title")
  it_should_have_input_with_type(:text)
  it_should_have_input_with_name("post[title]")
  it_should_use_default_text_field_size_when_method_has_no_database_column(:string)
  it_should_apply_custom_input_attributes_when_input_html_provided(:string)
  it_should_apply_custom_for_to_label_when_input_html_id_provided(:string)
  it_should_apply_error_logic_for_input_type(:numeric)
  
  describe "when no object is provided" do
    before do
      semantic_form_for(:project, :url => 'http://test.host/') do |builder|
        concat(builder.input(:title, :as => :numeric))
      end
    end
    
    it_should_have_label_with_text(/Title/)
    it_should_have_label_for("project_title")
    it_should_have_input_with_id("project_title")
    it_should_have_input_with_type(:text)
    it_should_have_input_with_name("project[title]")
  end
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
formtastic-rails3-0.9.7 spec/inputs/numeric_input_spec.rb