Sha256: b324a16a4dc13cd5554ea711cd039bb64de802e28098ab11653211529f5a0be7

Contents?: true

Size: 1.62 KB

Versions: 34

Compression:

Stored size: 1.62 KB

Contents

require File.expand_path(File.dirname(__FILE__) + '/../../test_helper')

describe ::Inch::API::Filter do
  before do
    @codebase = test_codebase(:ruby, :simple)
  end

  it 'should work' do
    @options = {}
    @context = ::Inch::API::Filter.new @codebase, @options
    refute @context.objects.empty?
    refute @context.grade_lists.empty?
  end

  it 'should work with option: visibility == :public' do
    @options = { visibility: [:public] }
    @context = ::Inch::API::Filter.new @codebase, @options
    assert @context.objects.all? { |o| o.public? }
  end

  it 'should work with option: visibility == :protected' do
    @options = { visibility: [:protected] }
    @context = ::Inch::API::Filter.new @codebase, @options
    assert @context.objects.all? { |o| o.protected? }
  end

  it 'should work with option: visibility == :private' do
    @options = { visibility: [:private] }
    @context = ::Inch::API::Filter.new @codebase, @options
    assert @context.objects.all? { |o| o.private? || o.tagged_as_private? }
  end

  it 'should work with option: namespaces == :only' do
    @options = { namespaces: :only }
    @context = ::Inch::API::Filter.new @codebase, @options
    assert @context.objects.all? { |o| o.namespace? }
  end

  it 'should work with option: undocumented == :only' do
    @options = { undocumented: :only }
    @context = ::Inch::API::Filter.new @codebase, @options
    assert @context.objects.all? { |o| o.undocumented? }
  end

  it 'should work with option: depth == 2' do
    @options = { depth: 2 }
    @context = ::Inch::API::Filter.new @codebase, @options
    refute @context.objects.any? { |o| o.depth > 2 }
  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
inch-0.5.7 test/unit/api/filter_test.rb
inch-0.5.6 test/unit/api/filter_test.rb
inch-0.5.5 test/unit/api/filter_test.rb
inch-0.5.4 test/unit/api/filter_test.rb
inch-0.5.3 test/unit/api/filter_test.rb
inch-0.5.2 test/unit/api/filter_test.rb
inch-0.5.1 test/unit/api/filter_test.rb
inch-0.5.0 test/unit/api/filter_test.rb
inch-0.5.0.rc11 test/unit/api/filter_test.rb
inch-0.5.0.rc10 test/unit/api/filter_test.rb
inch-0.5.0.rc9 test/unit/api/filter_test.rb
inch-0.5.0.rc8 test/unit/api/filter_test.rb
inch-0.5.0.rc7 test/unit/api/filter_test.rb
inch-0.5.0.rc6 test/unit/api/filter_test.rb