Sha256: 6c5c8d5897efb6415ff8d693f8f09365f6907b706f313efb605cedccf0752fa9
Contents?: true
Size: 1.48 KB
Versions: 4
Compression:
Stored size: 1.48 KB
Contents
# encoding: utf-8 require 'spec_helper' describe 'email input' do include FormtasticSpecHelper before do @output_buffer = '' mock_everything end describe "when object is provided" do before do concat(semantic_form_for(@new_post) do |builder| concat(builder.input(:email)) end) end it_should_have_input_wrapper_with_class(:email) it_should_have_input_wrapper_with_class(:input) it_should_have_input_wrapper_with_class(:stringish) it_should_have_input_wrapper_with_id("post_email_input") it_should_have_label_with_text(/Email/) it_should_have_label_for("post_email") it_should_have_input_with_id("post_email") it_should_have_input_with_type(:email) it_should_have_input_with_name("post[email]") end describe "when namespace is provided" do before do concat(semantic_form_for(@new_post, :namespace => 'context2') do |builder| concat(builder.input(:email)) end) end it_should_have_input_wrapper_with_id("context2_post_email_input") it_should_have_label_and_input_with_id("context2_post_email") end describe "when required" do it "should add the required attribute to the input's html options" do with_config :use_required_attribute, true do concat(semantic_form_for(@new_post) do |builder| concat(builder.input(:title, :as => :email, :required => true)) end) output_buffer.should have_tag("input[@required]") end end end end
Version data entries
4 entries across 4 versions & 1 rubygems