48 lines
910 B
Ruby
Raw Normal View History

2018-04-14 03:01:33 +02:00
require "hardware"
describe Hardware::CPU do
describe "::type" do
let(:cpu_types) {
[
:arm,
2018-04-14 03:01:33 +02:00
:intel,
:ppc,
2018-04-14 03:01:33 +02:00
:dunno,
]
}
it "returns the current CPU's type as a symbol, or :dunno if it cannot be detected" do
expect(cpu_types).to include(described_class.type)
end
end
describe "::family" do
let(:cpu_families) {
[
:arrandale,
:atom,
:broadwell,
2018-04-14 03:01:33 +02:00
:core,
:core2,
:dothan,
:haswell,
:ivybridge,
:kabylake,
:merom,
2018-04-14 03:01:33 +02:00
:nehalem,
:penryn,
:prescott,
:presler,
2018-04-14 03:01:33 +02:00
:sandybridge,
:skylake,
:westmere,
2018-04-14 03:01:33 +02:00
:dunno,
]
}
it "returns the current CPU's family name as a symbol, or :dunno if it cannot be detected" do
expect(cpu_families).to include described_class.family
end
end
end