Sha256: 11d8efd629e76f3a8612bcb19690267b7c3b779b16818a0770e0554e2451072f

Contents?: true

Size: 1.09 KB

Versions: 8

Compression:

Stored size: 1.09 KB

Contents

require File.join(File.dirname(__FILE__), '..', '..', 'spec_helper')
require 'pp'
require 'stringio'

include YARD::Parser::Ruby

describe YARD::Parser::Ruby::AstNode do
  describe "#jump" do
    it "jumps to the first specific inner node if found" do
      ast = s(:paren, s(:paren, s(:params, s(s(:ident, "hi"), s(:ident, "bye")))))
      expect(ast.jump(:params)[0][0].type).to equal(:ident)
    end

    it "returns the original ast if no inner node is found" do
      ast = s(:paren, s(:list, s(:list, s(s(:ident, "hi"), s(:ident, "bye")))))
      expect(ast.jump(:params).object_id).to eq ast.object_id
    end
  end

  describe "#pretty_print" do
    it "shows a list of nodes" do
      obj = YARD::Parser::Ruby::RubyParser.parse("# x\nbye", "x").ast
      out = StringIO.new
      PP.pp(obj, out)
      vcall = RUBY_VERSION >= '1.9.3' ? 'vcall' : 'var_ref'
      expect(out.string).to eq "s(s(:#{vcall},\n" +
        "      s(:ident, \"bye\", line: 2..2, source: 4..6),\n" +
        "      docstring: \"x\",\n" +
        "      line: 2..2,\n" +
        "      source: 4..6))\n"
    end
  end
end if HAVE_RIPPER

Version data entries

8 entries across 7 versions & 2 rubygems

Version Path
abaci-0.3.0 vendor/bundle/gems/yard-0.9.2/spec/parser/ruby/ast_node_spec.rb
abaci-0.3.0 vendor/bundle/gems/yard-0.9.1/spec/parser/ruby/ast_node_spec.rb
yard-0.9.5 spec/parser/ruby/ast_node_spec.rb
yard-0.9.4 spec/parser/ruby/ast_node_spec.rb
yard-0.9.3 spec/parser/ruby/ast_node_spec.rb
yard-0.9.2 spec/parser/ruby/ast_node_spec.rb
yard-0.9.1 spec/parser/ruby/ast_node_spec.rb
yard-0.9.0 spec/parser/ruby/ast_node_spec.rb