Skip to content

Commit

Permalink
Tests all protos currently in VALID_PROTO list
Browse files Browse the repository at this point in the history
  • Loading branch information
lorengordon committed Dec 21, 2019
1 parent 5938dce commit 929a4b7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/integration/modules/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,18 @@ def test_valid_file_proto(self):
'''
self.assertTrue(
self.run_function('config.valid_fileproto', ['salt://']))
self.assertTrue(
self.run_function('config.valid_fileproto', ['file://']))
self.assertTrue(
self.run_function('config.valid_fileproto', ['http://']))
self.assertTrue(
self.run_function('config.valid_fileproto', ['https://']))
self.assertTrue(
self.run_function('config.valid_fileproto', ['ftp://']))
self.assertTrue(
self.run_function('config.valid_fileproto', ['s3://']))
self.assertTrue(
self.run_function('config.valid_fileproto', ['swift://']))
self.assertFalse(
self.run_function('config.valid_fileproto', ['cheese://']))

Expand Down

0 comments on commit 929a4b7

Please sign in to comment.