Sha256: 731dc759a92123a314323852e6a8905c30495bf60bde1c1f284dcf93b66a510e

Contents?: true

Size: 315 Bytes

Versions: 26

Compression:

Stored size: 315 Bytes

Contents

require 'spec_helper'

describe "The and statement" do
  it "should always return s(:and)" do
    opal_parse("1 and 2").should == [:and, [:lit, 1], [:lit, 2]]
  end
end

describe "The && expression" do
  it "should always return s(:and)" do
    opal_parse("1 && 2").should == [:and, [:lit, 1], [:lit, 2]]
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
opal-0.4.3 spec/parser/and_spec.rb
opal-0.4.2 spec/parser/and_spec.rb
opal-0.4.1 spec/parser/and_spec.rb
opal-0.4.0 spec/parser/and_spec.rb
opal-0.3.44 spec/parser/and_spec.rb
opal-0.3.43 spec/parser/and_spec.rb
opal-0.3.42 spec/grammar/and_spec.rb
opal-0.3.41 spec/grammar/and_spec.rb
opal-0.3.40 spec/grammar/and_spec.rb
opal-0.3.39 spec/grammar/and_spec.rb
opal-0.3.38 spec/grammar/and_spec.rb
opal-0.3.37 spec/grammar/and_spec.rb
opal-0.3.36 spec/grammar/and_spec.rb
opal-0.3.35 spec/grammar/and_spec.rb
opal-0.3.34 spec/grammar/and_spec.rb
opal-0.3.33 spec/grammar/and_spec.rb
opal-0.3.32 spec/grammar/and_spec.rb
opal-0.3.31 spec/grammar/and_spec.rb
opal-0.3.30 spec/grammar/and_spec.rb
opal-0.3.29 spec/grammar/and_spec.rb