gutils.py 508 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. """!@package grass.gunittest.gutils
  3. @brief Utilities related to GRASS GIS for GRASS Python testing framework
  4. Copyright (C) 2014 by the GRASS Development Team
  5. This program is free software under the GNU General Public
  6. License (>=v2). Read the file COPYING that comes with GRASS GIS
  7. for details.
  8. @author Vaclav Petras
  9. """
  10. from .gmodules import call_module
  11. def get_current_mapset():
  12. """Get curret mapset name as a string"""
  13. return call_module('g.mapset', flags='p').strip()