2015-09-05 20:36:12 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
require 'helper'
|
|
|
|
require 'vulcano/resource'
|
|
|
|
|
|
|
|
describe 'Vulcano::Resources::RegistryKey' do
|
|
|
|
describe 'registry_key' do
|
2015-09-22 16:31:21 +00:00
|
|
|
let(:resource) { load_resource('registry_key', 'Task Scheduler', 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Schedule') }
|
|
|
|
let(:resource_without_name) { load_resource('registry_key', 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Schedule') }
|
2015-09-05 20:36:12 +00:00
|
|
|
|
|
|
|
it 'read reg key with human readable name' do
|
|
|
|
_(resource.Start).must_equal 2
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'read reg key without human readable name' do
|
|
|
|
_(resource_without_name.Start).must_equal 2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|