我们正尝试在Windows中使用ServerSpec验证应用程序安装。我在ruby文件中写了以下几行(使用Test.rb)
require 'spec_helper'
set :backend, :cmd
set :os, :family => 'windows'
describe package('ApplicationCorePackage') do
it { should be_installed }
end
我像这样运行脚本。
rspec 'C:\Ruby Scripts\Test.rb' --format html --out 'C:\Ruby Scripts\Test.html'
正在检查是否正确。但我想检查msi(Windows安装程序包)的特定版本。如何在serverspec中做到这一点?
答案 0 :(得分:1)
查看文档:{{3}}
匹配器be_installed
接受链with_version
。因此,使用RSpec 3语法,我们有:
describe package('ApplicationCorePackage') do
it { expect(subject).to be_installed.with_version('version') }
end
如果您的问题是您是否需要MSI提供商的by
链,那么答案就是您没有。