=> 'Found Dan!';
is $schema->storage->query_count, 2
- => 'Query Count is two';
+ => 'Query Count is two';
=head2 check at query interval
=> 'Got expected information from the job';
ok my $interval1 = $schema->create_query_interval(every=>10)
- => 'Created a interval';
+ => 'Created an interval';
ok $interval1->matches(10)
=> 'correctly matched 10';
=> 'correctly didnt matched 22';
ok my $interval2 = $schema->create_query_interval(every=>10, offset=>2)
- => 'Created a interval';
+ => 'Created an interval';
ok $interval2->matches(12)
=> 'correctly matched 12';
is_deeply [$schema->execute_jobs_at_query_interval(101)], [101.1,101.2]
=> 'Got Expected return for 101';
-
-
+
+
+
+
+
=head2 cleanup
Cleanup after ourselves