Miniparser/spec/Miniparser_spec.rb
2023-08-24 06:41:11 -06:00

12 lines
216 B
Ruby

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