Examples of tagItWith()


Examples of models.Post.tagItWith()

        // Well
        assertEquals(0, Post.findTaggedWith("Red").size());
       
        // Tag it now
        bobPost.tagItWith("Red").tagItWith("Blue").save();
        anotherBobPost.tagItWith("Red").tagItWith("Green").save();
       
        // Check
        assertEquals(2, Post.findTaggedWith("Red").size());       
        assertEquals(1, Post.findTaggedWith("Blue").size());
        assertEquals(1, Post.findTaggedWith("Green").size());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.