Sha256: 3952b23dbe2841971599b376005517c2c0b635a7f34383f47685057d44fa6d2d

Contents?: true

Size: 1.61 KB

Versions: 6

Compression:

Stored size: 1.61 KB

Contents

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

describe ::Inch::API::Filter do
  before do
    @codebase = test_codebase(: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

6 entries across 6 versions & 1 rubygems

Version Path
inch-0.5.0.rc5 test/unit/api/filter_test.rb
inch-0.5.0.rc4 test/unit/api/filter_test.rb
inch-0.4.10 test/unit/api/filter_test.rb
inch-0.4.9 test/unit/api/filter_test.rb
inch-0.4.8 test/unit/api/filter_test.rb
inch-0.4.7 test/unit/api/filter_test.rb