Sha256: b994dc7889575e482fbb78c156b976db1af903b3db08dc2e1fc36fbefebb4b27
Contents?: true
Size: 1.89 KB
Versions: 2
Compression:
Stored size: 1.89 KB
Contents
shared_examples_for 'common model actions' do context 'finding records' do it 'should retrieve Point objects' do model = PointModel.create(:extra => 'test', :geom => GeometryFactory.point) PointModel.find(model.id).geom.should == GeometryFactory.point end it 'should retrieve LineString objects' do model = LineStringModel.create(:extra => 'test', :geom => GeometryFactory.line_string) LineStringModel.find(model.id).geom.should == GeometryFactory.line_string end it 'should retrieve Polygon objects' do model = PolygonModel.create(:extra => 'test', :geom => GeometryFactory.polygon) PolygonModel.find(model.id).geom.should == GeometryFactory.polygon end it 'should retrieve MultiPoint objects' do model = MultiPointModel.create(:extra => 'test', :geom => GeometryFactory.multi_point) MultiPointModel.find(model.id).geom.should == GeometryFactory.multi_point end it 'should retrieve MultiLineString objects' do model = MultiLineStringModel.create(:extra => 'test', :geom => GeometryFactory.multi_line_string) MultiLineStringModel.find(model.id).geom.should == GeometryFactory.multi_line_string end it 'should retrieve MultiPolygon objects' do model = MultiPolygonModel.create(:extra => 'test', :geom => GeometryFactory.multi_polygon) MultiPolygonModel.find(model.id).geom.should == GeometryFactory.multi_polygon end it 'should retrieve GeometryCollection objects' do model = GeometryCollectionModel.create(:extra => 'test', :geom => GeometryFactory.geometry_collection) GeometryCollectionModel.find(model.id).geom.should == GeometryFactory.geometry_collection end it 'should retrieve Geometry objects' do model = GeometryModel.create(:extra => 'test', :geom => GeometryFactory.point) GeometryModel.find(model.id).geom.should == GeometryFactory.point end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spatial_adapter-1.3.1 | spec/shared/common_model_actions_spec.rb |
spatial_adapter-1.3.0 | spec/shared/common_model_actions_spec.rb |