-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated fixtures to include dependencies
Fixed reuse of user_domain variable Added spec tests
- Loading branch information
Tony Thayer
committed
May 31, 2018
1 parent
c7aa800
commit 5342940
Showing
4 changed files
with
26 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
require 'spec_helper' | ||
require 'puppetlabs_spec_helper/module_spec_helper' | ||
|
||
describe 'domain_membership' do | ||
on_supported_os.each do |os, facts| | ||
context "on #{os}" do | ||
let(:facts) { facts } | ||
let(:params) do | ||
{ | ||
domain: 'test.domain', | ||
username: 'testuser', | ||
password: 'password1', | ||
} | ||
end | ||
|
||
it { is_expected.to compile.with_all_deps } | ||
end | ||
end | ||
end |