Add a test for the gem's version

This commit is contained in:
Wilson Silva 2023-01-06 12:15:04 +07:00
parent 8f0ebc739b
commit a24e2368cb
No known key found for this signature in database
GPG Key ID: 65135F94E23F82C8

7
spec/nostr_spec.rb Normal file
View File

@ -0,0 +1,7 @@
# frozen_string_literal: true
RSpec.describe Nostr do
it 'has a version number' do
expect(Nostr::VERSION).not_to be_nil
end
end