Sha256: b1961b1ae6210c4dc163627fd270ca78b85337281ba662a8addceba80ecba9aa

Contents?: true

Size: 882 Bytes

Versions: 68

Compression:

Stored size: 882 Bytes

Contents

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

describe "YARD::Handlers::Ruby::#{LEGACY_PARSER ? "Legacy::" : ""}PrivateConstantHandler" do
  before(:all) { parse_file :private_constant_handler_001, __FILE__ }

  it "should handle private_constant statement" do
    Registry.at('A::Foo').visibility.should == :private
    Registry.at('A::B').visibility.should == :private
    Registry.at('A::C').visibility.should == :private
  end

  it "should make all other constants public" do
    Registry.at('A::D').visibility.should == :public
  end

  it "should fail if parameter is not String, Symbol or Constant" do
    undoc_error 'class Foo; private_constant x; end'
    undoc_error 'class Foo; X = 1; private_constant X.new("hi"); end'
  end unless LEGACY_PARSER

  it "should fail if constant can't be recognized" do
    undoc_error 'class Foo2; private_constant :X end'
  end
end

Version data entries

68 entries across 52 versions & 7 rubygems

Version Path
yard-0.8.7.6 spec/handlers/private_constant_handler_spec.rb
yard-0.8.7.5 spec/handlers/private_constant_handler_spec.rb
climine-0.0.7 vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/private_constant_handler_spec.rb
climine-0.0.7 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/spec/handlers/private_constant_handler_spec.rb
climine-0.0.6 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/spec/handlers/private_constant_handler_spec.rb
climine-0.0.5 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/spec/handlers/private_constant_handler_spec.rb
yard-0.8.7.4 spec/handlers/private_constant_handler_spec.rb
climine-0.0.4 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/spec/handlers/private_constant_handler_spec.rb
climine-0.0.3 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/spec/handlers/private_constant_handler_spec.rb
mango-0.8.0 vendor/bundler/ruby/2.1.0/gems/yard-0.8.7.3/spec/handlers/private_constant_handler_spec.rb
mango-0.7.1 vendor/bundler/ruby/2.0.0/gems/yard-0.8.7.3/spec/handlers/private_constant_handler_spec.rb
mango-0.7.0 vendor/bundler/ruby/2.0.0/gems/yard-0.8.7.3/spec/handlers/private_constant_handler_spec.rb
climine-0.0.2 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/spec/handlers/private_constant_handler_spec.rb
climine-0.0.1 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/spec/handlers/private_constant_handler_spec.rb
yard-0.8.7.3 spec/handlers/private_constant_handler_spec.rb
yard-0.8.7.2 spec/handlers/private_constant_handler_spec.rb
candlepin-api-0.4.0 bundle/ruby/1.8/gems/yard-0.8.7/spec/handlers/private_constant_handler_spec.rb
candlepin-api-0.4.0 bundle/ruby/gems/yard-0.8.7/spec/handlers/private_constant_handler_spec.rb
candlepin-api-0.4.0 bundle/ruby/1.9.1/gems/yard-0.8.7/spec/handlers/private_constant_handler_spec.rb
yard-0.8.7.1 spec/handlers/private_constant_handler_spec.rb