Sha256: 0bd927a8b9da646b8fa173f36adcf5927ec4fe45610aea9f292c5e928c46f164
Contents?: true
Size: 647 Bytes
Versions: 39
Compression:
Stored size: 647 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' RSpec.describe CKEditor5::Rails do describe 'VERSION' do it 'is defined as a string' do expect(described_class::VERSION).to be_a(String) end it 'follows semantic versioning format' do expect(described_class::VERSION).to match(/^\d+\.\d+\.\d+$/) end end describe 'DEFAULT_CKEDITOR_VERSION' do it 'is defined as a string' do expect(described_class::DEFAULT_CKEDITOR_VERSION).to be_a(String) end it 'follows semantic versioning format' do expect(described_class::DEFAULT_CKEDITOR_VERSION).to match(/^\d+\.\d+\.\d+$/) end end end
Version data entries
39 entries across 39 versions & 2 rubygems