Add monitoring test framework

This commit is contained in:
Aaron Whitehouse 2022-03-17 10:28:10 +00:00
parent cdbc1915ba
commit e26671c97d
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,10 @@
[sanoid-test-1]
use_template = production
[template_production]
hourly = 36
daily = 30
monthly = 3
yearly = 0
autosnap = yes
autoprune = no

View File

@ -0,0 +1,19 @@
#!/usr/bin/env python3
# this software is licensed for use under the Free Software Foundation's GPL v3.0 license, as retrieved
# from http://www.gnu.org/licenses/gpl-3.0.html on 2014-11-17. A copy should also be available in this
# project's Git repository at https://github.com/jimsalterjrs/sanoid/blob/master/LICENSE.
import unittest
class TestNothing(unittest.TestCase):
def test_nothing(self):
"""Test"""
# Test sanoid_snapshots_exist
self.assertEqual(1,1)
if __name__ == '__main__':
unittest.main()