use strict; use Test::Base; use Web::Scraper; plan tests => 1 * blocks; filters { expected => 'chomp', }; run { my $block = shift; my $s = scraper { process $block->selector, 'want[]' => { link => '@href' }; result 'want'; }; my $want = $s->scrape($block->html, $block->url); is $want->[0]->{link}, $block->expected, $block->name; }; __DATA__ === --- url: http://example.com/ --- html --- selector a#foo --- expected http://example.com/foo.html