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())
    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())
    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())