Lines Matching refs:is
21 is( $p_is->name, '(unknown)', 'Pod::InputSource->name()' );
22 is( $p_is->name( 'test' ), 'test', 'set Pod::InputSource->name( test )' );
23 is( $p_is->filename, 'test', 'Pod::InputSource->filename() alias' );
25 is( $p_is->handle, \*FH, 'Pod::InputSource->handle()' );
27 is( $p_is->was_cutting(), 0, 'Pod::InputSource->was_cutting()' );
28 is( $p_is->was_cutting( 1 ), 1, 'set Pod::InputSource->was_cutting( 1 )' );
37 is( $p_p1->cmd_name(), 'head2', 'Pod::Paragraph->cmd_name()' );
38 is( $p_p1->cmd_name( 'head1' ), 'head1',
43 is( $p_p1->text(), 'NAME', 'Pod::Paragraph->text()' );
44 is( $p_p2->text(), 'test - This is the test suite',
47 is( $p_p2->text( $new_text ), $new_text,
50 is( $p_p1->raw_text, '=head1 NAME',
52 is( $p_p2->raw_text, $new_text,
55 is( $p_p1->cmd_prefix, '=',
57 is( $p_p1->cmd_separator, ' ',
62 is( $p_p1->file_line(), '<unknown-file>:0',
65 is( $p_p2->file_line(), 'test:3',
83 is( $p_is->cmd_name(), 'I', 'Pod::InteriorSequence->cmd_name()' );
84 is( $p_is->cmd_name( 'B' ), 'B',
87 is( $p_is->raw_text(), "B<$cmd_txt>",
91 is( $p_is->raw_text(), "B<$pre_txt$cmd_txt>",
95 is( $p_is->raw_text(), "B<$pre_txt$cmd_txt$pst_txt>",
105 is( $p_pt1->top(), $p_pt1, 'Pod::ParseTree->top()' );
106 is( $p_pt1->top( $p_pt1, $p_pt2 ), $p_pt1,
114 is( $p_pt2->raw_text(), $text, 'Pod::ParseTree->append()' );