Sha256: dafccdabc4ce40245011298c0c18d3d9fef201930eabec00fe9d1d1cc4e0a724

Contents?: true

Size: 1.23 KB

Versions: 21

Compression:

Stored size: 1.23 KB

Contents

# frozen_string_literal: true
require File.dirname(__FILE__) + "/spec_helper"

RSpec.describe YARD::Handlers::C::PathHandler do
  it "tracks variable names defined under namespaces" do
    parse_init <<-eof
      mFoo = rb_define_module("Foo");
      cBar = rb_define_class_under(mFoo, "Bar", rb_cObject);
      rb_define_method(cBar, "foo", foo, 1);
    eof
    expect(Registry.at('Foo::Bar')).not_to be nil
    expect(Registry.at('Foo::Bar#foo')).not_to be nil
  end

  it "tracks variable names defined under namespaces" do
    parse_init <<-eof
      mFoo = rb_define_module("Foo");
      cBar = rb_define_class_under(mFoo, "Bar", rb_cObject);
      mBaz = rb_define_module_under(cBar, "Baz");
      rb_define_method(mBaz, "foo", foo, 1);
    eof
    expect(Registry.at('Foo::Bar::Baz')).not_to be nil
    expect(Registry.at('Foo::Bar::Baz#foo')).not_to be nil
  end

  it "handles rb_path2class() calls" do
    parse_init <<-eof
      somePath = rb_path2class("Foo::Bar::Baz")
      mFoo = rb_define_module("Foo");
      cBar = rb_define_class_under(mFoo, "Bar", rb_cObject);
      mBaz = rb_define_module_under(cBar, "Baz");
      rb_define_method(somePath, "foo", foo, 1);
    eof
    expect(Registry.at('Foo::Bar::Baz#foo')).not_to be nil
  end
end

Version data entries

21 entries across 20 versions & 4 rubygems

Version Path
yard-0.9.24 spec/handlers/c/path_handler_spec.rb
yard-0.9.23 spec/handlers/c/path_handler_spec.rb
yard-0.9.22 spec/handlers/c/path_handler_spec.rb
yard-0.9.21 spec/handlers/c/path_handler_spec.rb
yard-0.9.20 spec/handlers/c/path_handler_spec.rb
yard-0.9.19 spec/handlers/c/path_handler_spec.rb
yard-0.9.16 spec/handlers/c/path_handler_spec.rb
yard-0.9.15 spec/handlers/c/path_handler_spec.rb
yard-0.9.14 spec/handlers/c/path_handler_spec.rb
yard-0.9.13 spec/handlers/c/path_handler_spec.rb
yard-0.9.12 spec/handlers/c/path_handler_spec.rb
yard-0.9.11 spec/handlers/c/path_handler_spec.rb
yard-0.9.10 spec/handlers/c/path_handler_spec.rb
yard-0.9.9 spec/handlers/c/path_handler_spec.rb
etude_for_ruby-0.1.4 vendor/bundle/ruby/2.4.0/gems/yard-0.9.8/spec/handlers/c/path_handler_spec.rb
etude_for_ruby-0.1.4 vendor/bundle/ruby/2.2.0/gems/yard-0.9.8/spec/handlers/c/path_handler_spec.rb
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/yard-0.9.8/spec/handlers/c/path_handler_spec.rb
yard-0.9.8 spec/handlers/c/path_handler_spec.rb
abaci-0.3.0 vendor/bundle/gems/yard-0.9.7/spec/handlers/c/path_handler_spec.rb
yard-0.9.7 spec/handlers/c/path_handler_spec.rb