
... because the latest lint no longer allows usage of legacy facts and top scope fact. Change-Id: I7de4bd06c59b921c8774accf462db1cf434d5cf6
19 lines
323 B
Ruby
19 lines
323 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'manila::params' do
|
|
|
|
on_supported_os({
|
|
:supported_os => OSDefaults.get_supported_os
|
|
}).each do |os,facts|
|
|
context "on #{os}" do
|
|
let (:facts) do
|
|
facts.merge!(OSDefaults.get_facts())
|
|
end
|
|
it 'should compile' do
|
|
subject
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|