Ejemplo n.º 1
0
    def test_get_temp_path(self):
        """Check the path for temporary application data on OS X."""
        platform = Platform(self.sys)

        self.assertTrue("Library/Caches" in platform.get_temp_path())
Ejemplo n.º 2
0
    def test_get_temp_path(self):
        """Check the path for temporary application data on Linux."""
        platform = Platform(self.sys)

        self.assertTrue(".cache" in platform.get_temp_path())
Ejemplo n.º 3
0
    def test_get_temp_path(self):
        """Check the path for temporary application data on Windows."""
        platform = Platform(self.sys)

        self.assertTrue("Locals" in platform.get_temp_path())