Sha256: ea745962f21341085e0c6e734f1a1522710e724a55693ba71311a5c4050804b2
Contents?: true
Size: 588 Bytes
Versions: 6
Compression:
Stored size: 588 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + "/../../test_helper") describe ::Inch::API::Get do before do @codebase = test_codebase(:simple) end it "should work" do @object_names = ["Foo", "Foo::Bar"] @context = ::Inch::API::Get.new @codebase, @object_names assert_equal 2, @context.objects.size refute @context.object.nil? refute @context.grade_lists.empty? end it "should work with wildcard" do @object_names = ["Foo", "Foo::Bar#"] @context = ::Inch::API::Get.new @codebase, @object_names assert @context.objects.size > 2 end end
Version data entries
6 entries across 6 versions & 1 rubygems