1
0
mirror of https://github.com/bumi/openalias-ruby synced 2025-06-15 22:48:14 +00:00
openalias-ruby/spec/openalias_spec.rb
bumi d3f471792b Openalias ruby wrapper
Openalias.org is great! There is openalias.rs (written in Rust) to
lookup and parse OpenAlias data.
This is a ruby wrapper around that rust library.

I don't know what I am doing so use at your own risk..and with care.
2018-11-01 02:08:35 +01:00

12 lines
206 B
Ruby

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