Sha256: 3b1b905915c82f7a76cae61f803593326691d720ca86ef1e5b6dfbcb6b42fba2

Contents?: true

Size: 510 Bytes

Versions: 6

Compression:

Stored size: 510 Bytes

Contents

require "spec_helper"

RSpec.describe ::Code::Parser do
  subject { ::Code::Parser.parse(input) }

  ["a & b", "a & b & c"].each do |input|
    context input do
      let!(:input) { input }

      it { expect { subject }.to_not raise_error }
    end
  end

  [
    "a /* cool */ & b",
    "a & /* cool */ b",
    "a &  b & c /* cool */",
    "a & b & /* cool */ c"
  ].each do |input|
    context input do
      let!(:input) { input }

      it { expect(subject.to_json).to include("cool") }
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
template-ruby-parser-0.1.2 spec/code/parser/bitwise_and_spec.rb
code-ruby-parser-0.1.2 spec/code/parser/bitwise_and_spec.rb
template-ruby-parser-0.1.1 spec/code/parser/bitwise_and_spec.rb
code-ruby-parser-0.1.1 spec/code/parser/bitwise_and_spec.rb
template-ruby-parser-0.1.0 spec/code/parser/bitwise_and_spec.rb
code-ruby-parser-0.1.0 spec/code/parser/bitwise_and_spec.rb