Imported Robodoc.
[robodoc.git] / Source / Test / doc_dir_filter_test.pl
1 #!/usr/bin/perl -w
2 #
3 #
4 # $Id: doc_dir_filter_test.pl,v 1.1 2004/06/20 09:24:36 gumpu Exp $
5 #
6
7 #****x* SystemTest/doc_dir_filter_test_pl
8 # FUNCTION
9 #   If a user specifies a doc dir that is a subdir of the source
10 #   dir that robodoc has to skip it when scanning the sources.
11 #   We test this by running robodoc twice with the options
12 #     --src .
13 #     --doc ./NotDoc
14 #   (These are specified in doc_dir_filter_test.rc
15 # SOURCE
16 #
17
18 use strict;
19 use ROBOTest;
20 ROBOTest::start("Doc Dir Filter Test");
21 ROBOTest::assertNotDir("DocNot/DocNot");
22 ROBOTest::finish;
23
24 #******