Skip to content

Commit

Permalink
Merge pull request #45 from stmuk/master
Browse files Browse the repository at this point in the history
remove implicit test of https caused by wordpress redirect
  • Loading branch information
moritz committed Feb 27, 2015
2 parents 93bdaa6 + 58446c4 commit 6531ede
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/get-chunked-6guts.t
Expand Up @@ -5,10 +5,10 @@ use LWP::Simple;

# would really be nice to verify in headers that it's really chunked
# but, for now, this is "Simple"
my $html = LWP::Simple.get('http://6guts.wordpress.com/2012/07/29/rakudo-qast-switch-brings-memory-reductions/');
my $html = LWP::Simple.get('http://strangelyconsistent.org/blog/youre-in-a-space-of-twisty-little-mazes-all-alike/');

ok(
$html.match('masak++') && $html.match('</html>') && $html.chars > 30_000,
$html.match('masak') && $html.match('</html>') && $html.chars > 20_000,
'Pulled down whole chunked article'
);

Expand Down

0 comments on commit 6531ede

Please sign in to comment.