~ubuntu-branches/ubuntu/utopic/libdata-ical-perl/utopic

« back to all changes in this revision

Viewing changes to t/02.linewrap.t

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Yu, Nathan Handler, gregor herrmann
  • Date: 2009-07-13 19:53:11 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090713195311-i3yhxyumglrjgzjc
Tags: 0.16+dfsg-1
* New upstream release
  + Fixed escaping of backslash (\) characters
  + Always use CRLF as the newline character, per RFC 3445
* Added /me to Uploaders and Copyright
* Standards-Version 3.8.2 (no changes)
* Use shorter debhelper format
* debian/rules: Get around Module::Install 0.85 bug, which causes
  CPAN to be executed during build (ick!)

[ Nathan Handler ]
* debian/watch: Update to ignore development releases.

[ gregor herrmann ]
* debian/control: bump debhelper to 7.0.50 (override_* feature).

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
$todo->add_property(summary => $hundreds_of_characters);
20
20
 
21
21
lacks_string($todo->as_string, $hundreds_of_characters, "the long string isn't there");
22
 
unlike_string($todo->as_string, qr/.{76}/, "no lines are too long");
 
22
unlike_string($todo->as_string, qr/[^\r\n]{76}/, "no lines are too long");
23
23
 
24
24
 
25
25
like_string($todo->as_string(fold => 0), qr/.{300}/, "no lines are too long".$todo->as_string(fold=>0));