我想为其中一个具有创建詹金斯用户的代码的食谱编写chefspec,如下所示。
jenkins_user 'test1' do
full_name 'test user'
email 'test1@test.com'
password 'testp'
end
这里的“jenkins_user”不是厨师资源。我如何编写chefspec 来对食谱进行单元测试。
或者,如果我们有任何其他方法可以对配方进行单元测试,请告诉我。