public function testAddingMultipoint()
 {
     $blueprint = new Blueprint('test');
     $blueprint->multipoint('foo');
     $statements = $blueprint->toSql($this->getConnection(), $this->getGrammar());
     $this->assertEquals(1, count($statements));
     $this->assertContains('GEOGRAPHY(MULTIPOINT, 4326)', $statements[0]);
 }