Home | History | Annotate | Download | only in test

Lines Matching refs:drop_whitespace

72         self.check_wrap("", 6, [], drop_whitespace=False)
77 self.check_wrap("", 6, [], initial_indent="++", drop_whitespace=False)
336 # Check that drop_whitespace=False preserves whitespace.
342 drop_whitespace=False)
345 # Check that drop_whitespace=False preserves a whitespace-only string.
346 self.check_wrap(" ", 6, [" "], drop_whitespace=False)
350 # drop_whitespace is False).
351 self.check_wrap(" ", 6, [" "], drop_whitespace=False,
355 # Check drop_whitespace on a whitespace-only string.
359 # Check that drop_whitespace does not drop leading whitespace (if
370 # Check that drop_whitespace skips the whole line if a non-leading
373 # Include the result for drop_whitespace=False for comparison.
375 drop_whitespace=False)
385 # Check that drop_whitespace does not drop whitespace indents.