Sha256: dd573e974b90c0cc2dd5ef3d976bc3513e14504ac0344a12118297a7aa782aec

Contents?: true

Size: 1.85 KB

Versions: 7

Compression:

Stored size: 1.85 KB

Contents

require 'spec_helper'
require 'parslet/rig/rspec'

describe 'rspec integration' do
  include Parslet
  subject { str('example') }

  it { should parse('example') }
  it { should_not parse('foo') }
  it { should parse('example').as('example') }
  it { should_not parse('foo').as('example') }
  it { should_not parse('example').as('foo') }

  it { str('foo').as(:bar).should parse('foo').as({:bar => 'foo'}) }
  it { str('foo').as(:bar).should_not parse('foo').as({:b => 'f'}) }

  it 'accepts a block to assert more specific details about the parsing output' do
    str('foo').as(:bar).should(parse('foo').as { |output|
      output.should have_key(:bar)
      output.values.first.should == 'foo'
    })
  end

  # Uncomment to test error messages manually: 
  # it { str('foo').should parse('foo', :trace => true).as('bar') }
  # it { str('foo').should parse('food', :trace => true) }
  # it { str('foo').should_not parse('foo', :trace => true).as('foo') }
  # it { str('foo').should_not parse('foo', :trace => true) }
  # it 'accepts a block to assert more specific details about the parsing output' do
  #   str('foo').as(:bar).should(parse('foo', :trace => true).as { |output|
  #     output.should_not have_key(:bar)
  #   })
  # end
  
end

describe 'rspec3 syntax' do
  include Parslet

  let(:s) { str('example') }

  it { expect(s).to parse('example') }
  it { expect(s).not_to parse('foo') }
  it { expect(s).to parse('example').as('example') }
  it { expect(s).not_to parse('foo').as('example') }

  it { expect(s).not_to parse('example').as('foo') }

  # Uncomment to test error messages manually: 
  # it { expect(str('foo')).to parse('foo', :trace => true).as('bar') }
  # it { expect(str('foo')).to parse('food', :trace => true) }
  # it { expect(str('foo')).not_to parse('foo', :trace => true).as('foo') }
  # it { expect(str('foo')).not_to parse('foo', :trace => true) }
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
parslet-2.0.0 spec/parslet/rig/rspec_spec.rb
parslet-1.8.2 spec/parslet/rig/rspec_spec.rb
parslet-1.8.1 spec/parslet/rig/rspec_spec.rb
parslet-1.8.0 spec/parslet/rig/rspec_spec.rb
swift-pyrite-0.1.1 vendor/bundle/ruby/2.0.0/gems/parslet-1.7.1/spec/parslet/rig/rspec_spec.rb
swift-pyrite-0.1.0 vendor/bundle/ruby/2.0.0/gems/parslet-1.7.1/spec/parslet/rig/rspec_spec.rb
parslet-1.7.1 spec/parslet/rig/rspec_spec.rb