# frozen_string_literal: true require 'spec_helper' describe Cryptum::VERSION do it 'is defined' do expect(Cryptum::VERSION).not_to be_nil end it 'is a string' do expect(Cryptum::VERSION).to be_a(String) end it 'matches the expected pattern' do expect(Cryptum::VERSION).to match(/\d+\.\d+\.\d+/) end end