Example #1
0
    def test_python_info(self):
        result = deps.python_info()

        self.assertEquals('Python', result['name'])
        self.assertIn(platform.python_implementation(), result['version'])
        self.assertIn(platform.python_version(), result['version'])
        self.assertIn('python', result['path'])
Example #2
0
    def test_python_info(self):
        result = deps.python_info()

        self.assertEquals('Python', result['name'])
        self.assertIn(platform.python_implementation(), result['version'])
        self.assertIn(platform.python_version(), result['version'])
        self.assertIn('python', result['path'])
Example #3
0
    def test_python_info(self):
        result = deps.python_info()

        self.assertEquals("Python", result["name"])
        self.assertIn(platform.python_implementation(), result["version"])
        self.assertIn(platform.python_version(), result["version"])
        self.assertIn("python", result["path"])