Sha256: 84ecd02d748d20eb62c8cce7d24c3fd5b1cc3108ab625adfe1cc99d91880ec26

Contents?: true

Size: 754 Bytes

Versions: 3

Compression:

Stored size: 754 Bytes

Contents

require File.dirname(__FILE__) + '/spec_helper'

describe "YARD::Handlers::Ruby::#{RUBY18 ? "Legacy::" : ""}ExtendHandler" do
  before(:all) { parse_file :extend_handler_001, __FILE__ }

  it "should include modules at class scope" do
    Registry.at(:B).class_mixins.should == [P(:A)]
    Registry.at(:B).instance_mixins.should be_empty
  end

  it "should handle a module extending itself" do
    Registry.at(:C).class_mixins.should == [P(:C)]
    Registry.at(:C).instance_mixins.should be_empty
  end
  
  it "should extend module with correct namespace" do
    Registry.at('Q::R::S').class_mixins.first.path.should == 'A'
  end
  
  it "should not allow extending self if object is a class" do
    undoc_error "class Foo; extend self; end"
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
yard-0.6.4 spec/handlers/extend_handler_spec.rb
yard-0.6.3 spec/handlers/extend_handler_spec.rb
yard-0.6.2 spec/handlers/extend_handler_spec.rb