Sha256: 63906c464bf275a136232251c1a95b3d423b5a9b2662813d8626f95f6b46966d
Contents?: true
Size: 454 Bytes
Versions: 2
Compression:
Stored size: 454 Bytes
Contents
require 'spec_helper' require 'ffi-gdal' RSpec.describe FFI do describe 'autoload CPL' do it 'can call CPL functions' do expect { FFI::CPL }.to_not raise_exception end end describe 'autoload GDAL' do it 'can call GDAL functions' do expect { FFI::GDAL }.to_not raise_exception end end describe 'autoload OGR' do it 'can call OGR functions' do expect { FFI::OGR }.to_not raise_exception end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ffi-gdal-1.0.0.beta7 | spec/ffi-gdal_spec.rb |
ffi-gdal-1.0.0.beta6 | spec/ffi-gdal_spec.rb |