diff --git a/tests/Languages/Python/PythonLanguageTest.php b/tests/Languages/Python/PythonLanguageTest.php new file mode 100644 index 0000000..a1261cc --- /dev/null +++ b/tests/Languages/Python/PythonLanguageTest.php @@ -0,0 +1,58 @@ +assertSame( + $expected, + $highlighter->parse($content, 'python'), + ); + + $this->assertSame( + $expected, + $highlighter->parse($content, 'py'), + ); + } + + public static function data(): array + { + return [ + [<<def fib(n): # write Fibonacci series up to n + """Print a Fibonacci series up to n.""" + a, b = 0, 1 + while a < n: + print(a, end=' ') + a, b = b, a+b + print() + +# Now call the function we just defined: +fib(2000) +TXT], + ]; + } +}