Package org.netmelody.cieye.server.configuration.avatar

Examples of org.netmelody.cieye.server.configuration.avatar.Gravatar


        assertThat(offenders.search("markoVLADies"), is(Matchers.<Sponsor>empty()));
    }
   
    @Test public void
    looksUpOffenderAndProvidesLinkToGravatarMugshot() {
        final String gravatarUrlWithHashedEmail = new Gravatar().imageUrlFor("john.doe@gmail.com");
        assertThat(offenders.search("john"), contains(new Sponsor("", gravatarUrlWithHashedEmail)));
    }
View Full Code Here

TOP

Related Classes of org.netmelody.cieye.server.configuration.avatar.Gravatar

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.