blob: 6765dff9e451df5eeb46c85e9ea63d3c1073f498 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#
# Copyright (c) 2011 Daniel James
#
# Distributed under the Boost Software License, Version 1.0. (See
# accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
#
project quickbook/test/snippets ;
import quickbook-testing : quickbook-test quickbook-error-test ;
test-suite quickbook.test :
[ quickbook-test pass_thru ]
[ quickbook-test unbalanced_snippet1-1_5 ]
[ quickbook-error-test unbalanced_snippet1-1_6-fail ]
[ quickbook-error-test unbalanced_snippet2-1_6-fail ]
;
|