Sha256: b8412070995f998d060b1c9870e484cc2fee1fe0c9861b25bdede7035aadda29

Contents?: true

Size: 490 Bytes

Versions: 3

Compression:

Stored size: 490 Bytes

Contents

require 'spec_helper'

describe 'Formtastic form matcher' do      
  with_form_helper :formtastic
  
  context "Formtastic example 1 view file" do
    let(:form_file) { File.join erb_fixtures_dir, 'formtastic-ex1.erb' }
    
    it "content should match form expectations" do      
      form_file.should have_content do |content|
        content.erb_code.should have_semantic_form_for '@article' do |form|
          form.should have_inputs "Basic"
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
forms-spec-0.1.2 spec/forms-spec/erb/matchers/formtastic/have_formtastic_spec.rb
forms-spec-0.1.1 spec/forms-spec/erb/matchers/formtastic/have_formtastic_spec.rb
forms-spec-0.1.0 spec/forms-spec/erb/matchers/formtastic/have_formtastic_spec.rb