schemable/spec/schemable_spec.rb
2023-05-14 12:26:33 +03:00

12 lines
213 B
Ruby

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