1 module('DrawTool');
  2 
  3 /**
  4  * Simply verify that the widget loads without throwing any errors (unless of course the proper options were not defined).
  5  */
  6 earthTest('initialize', function(ge, gex){
  7     tool = new madrona.DrawTool(ge, gex);
  8     equals(tool.gex, gex);
  9     equals(tool.targetShape, null);
 10     equals(tool.clippedShapeWKT, null);
 11     equals(tool.clippedShapeKML, null);
 12 });