Sha256: 9c84c0a807ff336f7e507b9fea5ac7f267c2125668ef4ca0eb40dbae752323ba

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_or_spec.rb
code-ruby-parser-0.1.2 spec/code/parser/bitwise_or_spec.rb
template-ruby-parser-0.1.1 spec/code/parser/bitwise_or_spec.rb
code-ruby-parser-0.1.1 spec/code/parser/bitwise_or_spec.rb
template-ruby-parser-0.1.0 spec/code/parser/bitwise_or_spec.rb
code-ruby-parser-0.1.0 spec/code/parser/bitwise_or_spec.rb