Sha256: 1270a56916c7cd18674867d046bc062996bad838704994a081643a7e858fc91a

Contents?: true

Size: 488 Bytes

Versions: 12

Compression:

Stored size: 488 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 { subject }
    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

12 entries across 12 versions & 2 rubygems

Version Path
template-ruby-parser-0.1.8 spec/code/parser/or_operator_spec.rb
code-ruby-parser-0.1.8 spec/code/parser/or_operator_spec.rb
template-ruby-parser-0.1.7 spec/code/parser/or_operator_spec.rb
code-ruby-parser-0.1.7 spec/code/parser/or_operator_spec.rb
template-ruby-parser-0.1.6 spec/code/parser/or_operator_spec.rb
code-ruby-parser-0.1.6 spec/code/parser/or_operator_spec.rb
template-ruby-parser-0.1.5 spec/code/parser/or_operator_spec.rb
code-ruby-parser-0.1.5 spec/code/parser/or_operator_spec.rb
template-ruby-parser-0.1.4 spec/code/parser/or_operator_spec.rb
code-ruby-parser-0.1.4 spec/code/parser/or_operator_spec.rb
template-ruby-parser-0.1.3 spec/code/parser/or_operator_spec.rb
code-ruby-parser-0.1.3 spec/code/parser/or_operator_spec.rb