nostr-gem/spec/nostr_spec.rb
2023-01-06 10:00:47 +07:00

12 lines
206 B
Ruby

# frozen_string_literal: true
RSpec.describe Nostr do
it "has a version number" do
expect(Nostr::VERSION).not_to be nil
end
it "does something useful" do
expect(false).to eq(true)
end
end