Sha256: 96c98aedf298002efb610d034bda1e74aa1cb730c4d3c6b6077bf2de28b7fc72
Contents?: true
Size: 1.14 KB
Versions: 28
Compression:
Stored size: 1.14 KB
Contents
# # Author:: Richard Manyanza (<liseki@nyikacraftsmen.com>) # Copyright:: Copyright (c) 2014 Richard Manyanza. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require_relative "../../../spec_helper.rb" describe Ohai::System, "FreeBSD plugin os" do before(:each) do @plugin = get_plugin("freebsd/os") allow(@plugin).to receive(:shell_out).with("sysctl -n kern.osreldate").and_return(mock_shell_out(0, "902001\n", "")) allow(@plugin).to receive(:collect_os).and_return(:freebsd) end it "should set os_version to __FreeBSD_version" do @plugin.run expect(@plugin[:os_version]).to eq("902001") end end
Version data entries
28 entries across 28 versions & 1 rubygems