Sha256: 9262cfe45682d15ce176ae9e48cae997ebdbe90dbcb02ff469696edf4559976b

Contents?: true

Size: 522 Bytes

Versions: 1

Compression:

Stored size: 522 Bytes

Contents

#######################################################################
# sys_cpu_spec.rb
#
# Only shared specs go here. Everything else goes into its own tagged
# spec file.
#######################################################################
require 'sys/cpu'
require 'rspec'

RSpec.describe Sys::CPU::VERSION do
  example "version number is set to the expected value" do
    expect(Sys::CPU::VERSION).to eq('1.0.0')
  end

  example "version number is frozen" do
    expect(Sys::CPU::VERSION).to be_frozen
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sys-cpu-1.0.0 spec/sys_cpu_spec.rb