Blocked revisions 117809 via svnmerge
[asterisk-bristuff.git] / tests / test_skel.c
blob9f80086588beec47ff717a6a8c9e7e21949f1084
1 /*
2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) <Year>, <Your Name Here>
6 * <Your Name Here> <<Your Email Here>>
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
19 /*! \file
21 * \brief Skeleton Test
23 * \author\verbatim <Your Name Here> <<Your Email Here>> \endverbatim
25 * This is a skeleton for development of an Asterisk test module
26 * \ingroup tests
29 /*** MODULEINFO
30 <defaultenabled>no</defaultenabled>
31 ***/
33 #include "asterisk.h"
35 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
37 #include "asterisk/file.h"
38 #include "asterisk/channel.h"
39 #include "asterisk/pbx.h"
40 #include "asterisk/module.h"
41 #include "asterisk/lock.h"
42 #include "asterisk/app.h"
44 static int unload_module(void)
46 return 0;
49 static int load_module(void)
51 return AST_MODULE_LOAD_SUCCESS;
54 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Skeleton (sample) Test");