ActionHash/spec/actionhash_spec.rb
2023-09-19 18:35:57 -06:00

12 lines
216 B
Ruby

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