[GRASS-SVN] r74260 - in grass/trunk/scripts/db.univar: . testsuite
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Mar 13 13:07:36 PDT 2019
Author: lucadelu
Date: 2019-03-13 13:07:36 -0700 (Wed, 13 Mar 2019)
New Revision: 74260
Added:
grass/trunk/scripts/db.univar/testsuite/
grass/trunk/scripts/db.univar/testsuite/test_db_univar.py
Log:
db.univar: added test, thanks to Sanjeet Bhatti
Added: grass/trunk/scripts/db.univar/testsuite/test_db_univar.py
===================================================================
--- grass/trunk/scripts/db.univar/testsuite/test_db_univar.py (rev 0)
+++ grass/trunk/scripts/db.univar/testsuite/test_db_univar.py 2019-03-13 20:07:36 UTC (rev 74260)
@@ -0,0 +1,48 @@
+"""
+Created on Sun Jun 07 21:01:34 2018
+
+ at author: Sanjeet Bhatti
+"""
+
+from grass.gunittest.case import TestCase
+from grass.gunittest.main import test
+from grass.gunittest.gmodules import SimpleModule
+
+from grass.script.core import run_command
+
+
+class TestDbUnivar(TestCase):
+ """Test db.univar script"""
+
+ columnName = 'heights'
+ mapName = 'samples'
+
+ @classmethod
+ def setUpClass(cls):
+ """Use temp region"""
+ cls.use_temp_region()
+ cls.runModule('g.region', raster='elevation', flags='p')
+
+ @classmethod
+ def tearDownClass(cls):
+ """Remove temporary region"""
+ cls.runModule('g.remove', flags='f', type='raster', name='elevation')
+ cls.del_temp_region()
+
+ run_command('v.db.droptable', map='samples', flags='f')
+
+ def test_calculate(self):
+ """run db.univar"""
+ run_command('v.random', output=self.mapName, n=100, overwrite='True')
+ run_command('v.db.addtable', map=self.mapName,
+ column="heights double precision")
+ run_command('v.what.rast', map=self.mapName, raster='elevation',
+ column=self.columnName)
+ run_command('v.db.select', map=self.mapName)
+
+ module = SimpleModule('db.univar', table=self.mapName,
+ column=self.columnName)
+ self.assertModule(module)
+
+if __name__ == '__main__':
+ test()
Property changes on: grass/trunk/scripts/db.univar/testsuite/test_db_univar.py
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/x-python
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
More information about the grass-commit
mailing list