2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-21 17:12:22 +00:00
Files
python/test/test_vector_plain.py
Raoul Gough 1c5450292d Reorganisation of indexing test suite
[SVN r20388]
2003-10-15 14:11:40 +00:00

44 lines
1.0 KiB
Python

#!/usr/bin/python
# -*- mode:python -*-
#
# Python module test_vector_plain.py
#
# Copyright (c) 2003 Raoul M. Gough
#
# Use, modification and distribution is subject to 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)
#
# History
# =======
# 2003/ 9/29 rmg File creation
#
# $Id$
#
'''>>> from test_vector_ext import *
>>> element_type = int
>>> v = Vector()
>>> v[:] = (6, 7, 8, 5, 4, 8, 3, 1, 2) # Slice replace (tuple)
>>> print [ x for x in v ]
[6, 7, 8, 5, 4, 8, 3, 1, 2]
>>> #### NOTE: test_vector_common gets included after this point ####
'''
def run(args = None):
import sys
import doctest
if args is not None:
sys.argv = args
return doctest.testmod(sys.modules.get(__name__))
if __name__ == '__main__':
from test_vector_common import common_doctest_string
__doc__ += common_doctest_string
print 'running...'
import sys
status = run()[0]
if (status == 0): print "Done."
sys.exit(status)