ruby-mdbx/spec/mdbx_spec.rb
mahlon@laika.com 6a7bfb722f Initial layout/commit.
FossilOrigin-Name: 5ccedce83232d9c4f5341866293f884fde8bcc9c1df2ea7407740d2d984fae9b
2020-11-19 02:06:45 +00:00

13 lines
232 B
Ruby

#!/usr/bin/env rspec -cfd
require_relative './lib/helper'
RSpec.describe( MDBX ) do
it "can report the MDBX library version" do
expect( described_class::LIBRARY_VERSION ).
to match( /v\d+\.\d+\.\d+\-\d+\-\w+$/ )
end
end