ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/test/metadata.C
Revision: 1.6
Committed: Wed Sep 5 11:23:15 2007 UTC (16 years, 8 months ago) by pippijn
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.5: +3 -3 lines
Log Message:
removed GPLed code and put license back to BSD

File Contents

# User Rev Content
1 pippijn 1.3 /*
2     * metadata.C: Metadata tests
3     * Copyright © 2007 Pippijn van Steenhoven / The Ermyth Team
4 pippijn 1.6 * Rights to this code are documented in doc/poddoc/license.pod
5 pippijn 1.3 *
6 pippijn 1.6 * $Id: metadata.C,v 1.5 2007-08-30 19:56:26 pippijn Exp $
7 pippijn 1.3 */
8    
9 pippijn 1.1 #include "unit/test.h"
10    
11     test<1> ()
12     {
13 pippijn 1.6 metadata *md;
14 pippijn 1.4 myuser_t *mu = myuser_t::create ("name", "pass", "email", 0);
15 pippijn 1.1
16 pippijn 1.3 md = mu->add_metadata ("cow", "moo");
17 pippijn 1.1 ensure_streq (md->value, "moo");
18     mu->del_metadata ("cow");
19     mu->add_metadata ("cow2", "moo2");
20     mu->clear_metadata ();
21 pippijn 1.3 md = mu->find_metadata ("moo");
22 pippijn 1.1 ensure_null (md);
23     }
24    
25     #include "unit/runtest.h"