Skip to content

Commit

Permalink
Start on test for multiline declarative comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hoelzro committed Jul 22, 2014
1 parent aa0621b commit 17a27b4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions S26-documentation/multiline-leading.t
@@ -0,0 +1,17 @@
use v6;
use Test;

plan 2;

#| More
#| Than
#| One
#| Line
class App {
#| Does
#| Stuff
method do-stuff() {}
}

is ~App.WHY, "More\nThan\nOne\nLine";
is ~App.^find_method('do-stuff').WHY, "Does\nStuff";

0 comments on commit 17a27b4

Please sign in to comment.