Sha256: 76933fbefa2986a3dbcfb0f2fa59adf8f5cb2a2926e70c6f62812a91c0ed507b
Contents?: true
Size: 1.42 KB
Versions: 4
Compression:
Stored size: 1.42 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 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
Version data entries
4 entries across 4 versions & 1 rubygems