File: test_long_string.py

package info (click to toggle)
python-expandvars 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 360 kB
  • sloc: python: 656; makefile: 3
file content (6 lines) | stat: -rw-r--r-- 152 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
from expandvars import expandvars


def test_parsing_long_string():
    long_string = " ".join("$VAR" for _ in range(1000))
    expandvars(long_string)