Miniparser/spec/Miniparse_spec.rb
2023-08-24 06:26:44 -06:00

12 lines
214 B
Ruby

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