Skip to content

Commit

Permalink
add user tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zinderic committed Dec 9, 2018
1 parent c5251ed commit 2606aea
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions test/integration/default/create_user_test.rb
@@ -0,0 +1,13 @@
# # encoding: utf-8

# Inspec test for recipe django-realworld::default

# The Inspec reference, with examples and extensive documentation, can be
# found at http://inspec.io/docs/reference/resources/

describe user('django') do
it { should exist }
its('group') { should eq 'django' }
its('home') { should eq '/home/django' }
its('shell') { should eq '/bin/bash' }
end

0 comments on commit 2606aea

Please sign in to comment.