Sha256: 86c954964044d8601ff40c4577fc2891240afab5a0e894090f44b1cb06c83643

Contents?: true

Size: 491 Bytes

Versions: 11

Compression:

Stored size: 491 Bytes

Contents

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

describe ::Inch::Codebase::Proxy do
  it "should parse all objects" do
    dir = fixture_path(:simple)
    paths = ["lib/**/*.rb"]
    @codebase = Inch::Codebase::Proxy.new dir, paths
    refute_nil @codebase.objects
  end

  it "should parse all objects" do
    dir = fixture_path(:simple)
    paths = ["app/**/*.rb"]
    @codebase = Inch::Codebase::Proxy.new dir, paths
    assert @codebase.objects.empty?
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
inch-0.3.1 test/inch/codebase/proxy_test.rb
inch-0.3.1.rc6 test/inch/codebase/proxy_test.rb
inch-0.3.1.rc5 test/inch/codebase/proxy_test.rb
inch-0.3.1.rc4 test/inch/codebase/proxy_test.rb
inch-0.3.1.rc3 test/inch/codebase/proxy_test.rb
inch-0.3.1.rc2 test/inch/codebase/proxy_test.rb
inch-0.3.1.rc1 test/inch/codebase/proxy_test.rb
inch-0.3.0 test/inch/codebase/proxy_test.rb
inch-0.3.0.rc3 test/inch/codebase/proxy_test.rb
inch-0.3.0.rc2 test/inch/codebase/proxy_test.rb
inch-0.3.0.rc1 test/inch/codebase/proxy_test.rb