mirror of
https://github.com/tailix/libkernaux.git
synced 2025-07-07 18:51:58 -04:00
11 lines
208 B
Ruby
11 lines
208 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe KernAux do
|
|
describe '::VERSION' do
|
|
specify do
|
|
expect(described_class::VERSION).to match(/\A\d+\.\d+\.\d+\z/)
|
|
end
|
|
end
|
|
end
|