1 require File.dirname(__FILE__) + '/../../spec_helper'
3 describe "LookupTable.allocate" do
4 it "creates an instance of LookupTable" do
5 LookupTable.allocate.should be_kind_of(LookupTable)
8 it "creates a fully-formed LookupTable instance" do
9 lt = LookupTable.allocate
10 lt.should be_kind_of(LookupTable)