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

describe ::Inch::API::List do
  before do
    @codebase = test_codebase(:simple)
  end

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