Sha256: 48fe8abd6fa216f47e2e67a9927561f4e057a573275af5ba746627de6ea41e77

Contents?: true

Size: 651 Bytes

Versions: 16

Compression:

Stored size: 651 Bytes

Contents

require 'spec_helper'

describe 'UrlInput' do
  
  include RSpec::Rails::HelperExampleGroup
  include Webrat::HaveTagMatcher
  
  before(:each) do
    
  end
  
  it "should return url tag" do
    helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
      builder.input(:website).should have_tag("input[type='url'].ui-url-input")
    end
  end
  
  it "should return url tag with options" do
    helper.jquery_form_for(:new_post, :as => @object, :url => '/hello') do |builder|
      builder.input(:website, "data-name" =>"my-name").should have_tag("input[type='url'][data-name='my-name'].ui-url-input")
    end
  end
  
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
jquery-ui-form-0.2.8 spec/inputs/url_input_spec.rb
jquery-ui-form-0.2.7 spec/inputs/url_input_spec.rb
jquery-ui-form-0.2.6 spec/inputs/url_input_spec.rb
jquery-ui-form-0.2.5 spec/inputs/url_input_spec.rb
jquery-ui-form-0.2.4 spec/inputs/url_input_spec.rb
jquery-ui-form-0.2.3 spec/inputs/url_input_spec.rb
jquery-ui-form-0.2.2 spec/inputs/url_input_spec.rb
jquery-ui-form-0.2.1 spec/inputs/url_input_spec.rb
jquery-ui-form-0.2.0 spec/inputs/url_input_spec.rb
jquery-ui-form-0.1.6 spec/inputs/url_input_spec.rb
jquery-ui-form-0.1.5 spec/inputs/url_input_spec.rb
jquery-ui-form-0.1.4 spec/inputs/url_input_spec.rb
jquery-ui-form-0.1.3 spec/inputs/url_input_spec.rb
jquery-ui-form-0.1.2 spec/inputs/url_input_spec.rb
jquery-ui-form-0.1.1 spec/inputs/url_input_spec.rb
jquery-ui-form-0.1.0 spec/inputs/url_input_spec.rb