Sha256: 81238c24bda9a8a14ad106307406d7bffee2320daaa6855406149a1512608a3b
Contents?: true
Size: 621 Bytes
Versions: 8
Compression:
Stored size: 621 Bytes
Contents
require 'spec_helper' describe FileComponent 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[:filename] 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_filename]') component.should have_selector('input[type=file]') end end end
Version data entries
8 entries across 8 versions & 1 rubygems