Rename the contact-retrieval test.
authorTravis Reitter <travis.reitter@collabora.co.uk>
Wed, 13 Oct 2010 21:00:12 +0000 (14:00 -0700)
committerTravis Reitter <travis.reitter@collabora.co.uk>
Wed, 13 Oct 2010 21:10:59 +0000 (14:10 -0700)
tests/telepathy/Makefile.am
tests/telepathy/individual-retrieval.vala [moved from tests/telepathy/contact-retrieval.vala with 98% similarity]

index 06beae5..28580a8 100644 (file)
@@ -44,7 +44,7 @@ VALAFLAGS += \
 # in order from least to most complex
 noinst_PROGRAMS = \
        persona-store-capabilities \
-       contact-retrieval \
+       individual-retrieval \
        contact-properties \
        $(NULL)
 
@@ -54,8 +54,8 @@ persona_store_capabilities_SOURCES = \
        persona-store-capabilities.vala \
        $(NULL)
 
-contact_retrieval_SOURCES = \
-       contact-retrieval.vala \
+individual_retrieval_SOURCES = \
+       individual-retrieval.vala \
        $(NULL)
 
 contact_properties_SOURCES = \
similarity index 98%
rename from tests/telepathy/contact-retrieval.vala
rename to tests/telepathy/individual-retrieval.vala
index cbe634e..35b253b 100644 (file)
@@ -5,7 +5,7 @@ using Tpf;
 using Folks;
 using Gee;
 
-public class ContactRetrievalTests : Folks.TestCase
+public class IndividualRetrievalTests : Folks.TestCase
 {
   private DBusDaemon daemon;
   private TpTest.Account account;
@@ -17,9 +17,9 @@ public class ContactRetrievalTests : Folks.TestCase
   private HashSet<string> default_individuals;
   private string individual_id_prefix = "telepathy:protocol:";
 
-  public ContactRetrievalTests ()
+  public IndividualRetrievalTests ()
     {
-      base ("ContactRetrieval");
+      base ("IndividualRetrieval");
 
       /* Create a set of the individuals we expect to see */
       this.default_individuals = new HashSet<string> (str_hash, str_equal);
@@ -391,7 +391,7 @@ public int main (string[] args)
   Test.init (ref args);
 
   TestSuite root = TestSuite.get_root ();
-  root.add_suite (new ContactRetrievalTests ().get_suite ());
+  root.add_suite (new IndividualRetrievalTests ().get_suite ());
 
   Test.run ();