Result:
found more than 1022 distributions - search limited to the first 2001 files matching your query ( run in 1.278 )


App-GitHooks-Plugin-ValidatePODFormat

 view release on metacpan or  search on metacpan

t/10-run.t  view on Meta::CPAN

				files      => $test->{'files'},
				repository => $repository,
			);

			# Try to commit.
			my $stderr;
			lives_ok(
				sub
				{
					$stderr = Capture::Tiny::capture_stderr(
						sub
						{
							$repository->run( 'commit', '-m', 'Test message.' );
						}
					);
					note( $stderr );
				},
				'Commit the changes.',
			);

			like(
				$stderr,
				$test->{'expected'},
				"The output matches expected results.",
			);
		}
	);

 view all matches for this distribution


App-GitHubUtils

 view release on metacpan or  search on metacpan

lib/App/GitHubUtils.pm  view on Meta::CPAN

    }
    log_info "Creating repo '%s' ...", $repo;

    my ($out, $err);
    IPC::System::Options::system(
        {log=>1, capture_stdout=>\$out, capture_stderr=>\$err},
        "github-cmd",
        defined($args{github_cmd_config_profile}) ? ("--config-profile", $args{github_cmd_config_profile}) : (),
        "create-repo", $repo);
    my $exit = $?;

 view all matches for this distribution


( run in 1.278 second using v1.01-cache-2.11-cpan-0bb4e1dffa6 )