require "spec"

class Thing
end

class AnotherThing
  @a = [] of Thing
end

describe "equality" do
  it "should make sense (to me)" do
    a = AnotherThing.new
    b = AnotherThing.new
    a.should eq b
  end
end