PageRenderTime 47ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/t/Twitter.t

http://github.com/duckduckgo/zeroclickinfo-spice
Perl | 38 lines | 31 code | 6 blank | 1 comment | 0 complexity | d05c296fba38342e0567d66aa2c0ed38 MD5 | raw file
Possible License(s): Apache-2.0
  1. #!/usr/bin/env perl
  2. use strict;
  3. use warnings;
  4. use Test::More;
  5. use DDG::Test::Spice;
  6. ddg_spice_test(
  7. [qw( DDG::Spice::Twitter )],
  8. '@duckduckgo' => test_spice(
  9. '/js/spice/twitter/duckduckgo',
  10. call_type => 'include',
  11. caller => 'DDG::Spice::Twitter',
  12. ),
  13. 'twitter yegg' => test_spice(
  14. '/js/spice/twitter/yegg',
  15. call_type => 'include',
  16. caller => 'DDG::Spice::Twitter',
  17. ),
  18. 'twitter ecounysis' => test_spice(
  19. '/js/spice/twitter/ecounysis',
  20. call_type => 'include',
  21. caller => 'DDG::Spice::Twitter',
  22. ),
  23. 'what is twitter' => undef,
  24. 'twitter analytics' => undef,
  25. 'twitter company' => undef,
  26. 'about twitter' => undef,
  27. 'twitter apis' => undef,
  28. 'twitter developers' => undef,
  29. 'twitter users' => undef,
  30. 'twitter search' => undef
  31. );
  32. done_testing;