Sha256: 3d5157b87db2a7a0665f2a186df242bc81b51ef562f39cb843f52d2f7e8fc435

Contents?: true

Size: 806 Bytes

Versions: 8

Compression:

Stored size: 806 Bytes

Contents

require 'spec_helper'

describe SelectComponent do

  include RSpec::Rails::RequestExampleGroup

  context 'form' do

    it 'should render form field' do
      @post = Fabricate :post
      get admin_posts_path

      field = controller.form_fields[:status]
      field.options[:type] = :select
      component = ''
      controller.view_context.form_for @post, :url => admin_post_path(@post) do |form|
        component = Puffer::Component::Base.render_component(controller, field, :form, :form => form)
      end

      component.should have_selector('label[for=post_status]')
      component.should have_selector('select') do |select|
        Post.statuses.each do |status|
          select.should have_selector("option[value='#{status}']", :content => status)
        end
      end
    end

  end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
puffer-0.0.32 spec/app/components/select_component_spec.rb
puffer-0.0.31 spec/app/components/select_component_spec.rb
puffer-0.0.30 spec/app/components/select_component_spec.rb
puffer-0.0.29 spec/app/components/select_component_spec.rb
puffer-0.0.28 spec/app/components/select_component_spec.rb
puffer-0.0.26 spec/app/components/select_component_spec.rb
puffer-0.0.25 spec/app/components/select_component_spec.rb
puffer-0.0.24 spec/app/components/select_component_spec.rb