Sha256: 3126536f2c2c7204375f1418eb95bbfbd1c2876a30dcab1b3f33580ec99e6e18

Contents?: true

Size: 1.66 KB

Versions: 3

Compression:

Stored size: 1.66 KB

Contents

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

describe ::Inch::API::Filter do
  before do
    @dir = fixture_path(:simple)
    @codebase = ::Inch::Codebase.parse(@dir)
  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

3 entries across 3 versions & 1 rubygems

Version Path
inch-0.3.1 test/inch/api/filter_test.rb
inch-0.3.1.rc6 test/inch/api/filter_test.rb
inch-0.3.1.rc5 test/inch/api/filter_test.rb