File: unicornify.t

package info (click to toggle)
libgravatar-url-perl 1.07-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 156 kB
  • sloc: perl: 652; makefile: 6
file content (13 lines) | stat: -r--r--r-- 363 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use warnings;

use Test::More tests => 2;
use Unicornify::URL;

is unicornify_url( email => 'yarrow@hock.com' ),
   'http://unicornify.appspot.com/avatar/c5cf0e825e9757a09c43f08650f46a5f';

is unicornify_url( email => 'yarrow@hock.com', size => 128 ),
   'http://unicornify.appspot.com/avatar/c5cf0e825e9757a09c43f08650f46a5f?s=128';