Sha256: 7e50b823420906ba2560913e3a92ffdca53c736b534260ad3636ce8043ce4c0f

Contents?: true

Size: 606 Bytes

Versions: 6

Compression:

Stored size: 606 Bytes

Contents

require File.expand_path('../../spec_helper', __FILE__)

describe "op_asgn2" do
  it "returns s(:op_asgn2)" do
    opal_parse('self.foo += 1')[0].should == :op_asgn2
  end

  it "correctly assigns the receiver" do
    opal_parse("self.foo += 1")[1].should == [:self]
  end

  it "appends '=' onto the identifier in the sexp" do
    opal_parse("self.foo += 1")[2].should == :foo=
  end

  it "only uses the operator, not with '=' appended" do
    opal_parse("self.foo += 1")[3].should == :+
  end

  it "uses a simple sexp, not an arglist" do
    opal_parse("self.foo += 1")[4].should == [:lit, 1]
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
opal-0.3.20 spec/grammar/op_asgn2_spec.rb
opal-0.3.19 spec/grammar/op_asgn2_spec.rb
opal-0.3.18 spec/grammar/op_asgn2_spec.rb
opal-0.3.17 test/grammar/op_asgn2_spec.rb
opal-0.3.16 spec/grammar/op_asgn2_spec.rb
opal-0.3.15 spec/grammar/op_asgn2_spec.rb