test_attr.php 746 B

1234567891011121314151617181920212223242526
  1. <?php
  2. require_once('../phpQuery/phpQuery.php');
  3. phpQuery::$debug = true;
  4. $testName = 'Attribute change';
  5. $expected = 'new attr value';
  6. $result = phpQuery::newDocumentFile('test.html')
  7. ->find('p[rel]:first')
  8. ->attr('rel', $expected);
  9. if ($result->attr('rel') == $expected)
  10. print "Test '{$testName}' passed :)";
  11. else
  12. print "Test '{$testName}' <strong>FAILED</strong> !!!";
  13. print "\n";
  14. $testName = 'Attribute change in iteration';
  15. $expected = 'new attr value';
  16. $doc = phpQuery::newDocumentFile('test.html');
  17. foreach($doc['p[rel]:first'] as $p)
  18. pq($p)->attr('rel', $expected);
  19. if ($doc['p[rel]:first']->attr('rel') == $expected)
  20. print "Test '{$testName}' passed :)";
  21. else
  22. print "Test '{$testName}' <strong>FAILED</strong> !!!";
  23. print "\n";