Miniparser/spec/Miniparser_spec.rb

12 lines
216 B
Ruby
Raw Permalink Normal View History

2023-08-24 06:26:44 -06:00
# frozen_string_literal: true
RSpec.describe Miniparser do
2023-08-24 06:26:44 -06:00
it "has a version number" do
expect(Miniparser::VERSION).not_to be nil
2023-08-24 06:26:44 -06:00
end
it "does something useful" do
expect(false).to eq(true)
end
end