mirror of
https://github.com/ditkrg/schemable.git
synced 2026-01-22 14:17:19 +00:00
12 lines
214 B
Ruby
12 lines
214 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(false).to eq(true)
|
|
end
|
|
end
|