1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- """
- Created on Sun Jun 08 10:15:22 2018
- @author: Sanjeet Bhatti
- """
- from grass.gunittest.case import TestCase
- from grass.gunittest.main import test
- from grass.gunittest.gmodules import SimpleModule
- import os
- class TestRPack(TestCase):
- """Test r.pack script"""
- mapName = 'aspect'
- outFile = 'aspect.pack'
- @classmethod
- def setUpClass(cls):
- """Create maps in a small region."""
- cls.use_temp_region()
- cls.runModule('g.region', raster=cls.mapName, flags='p')
- @classmethod
- def tearDownClass(cls):
- """Remove temporary region. Delete output file"""
- cls.del_temp_region()
- if (os.path.isfile(cls.outFile)):
- os.remove(cls.outFile)
- def test_r_pack(self):
- """Create a pack file test"""
- module = SimpleModule('r.pack', input=self.mapName,
- output=self.outFile)
- self.assertModule(module)
- self.assertFileExists(filename=self.outFile)
- if __name__ == '__main__':
- test()
|