~oubiwann/pyrtf/master

« back to all changes in this revision

Viewing changes to rtfng/Renderer.py

  • Committer: Christian R. Simms
  • Date: 2009-11-02 15:20:18 UTC
  • mfrom: (70.1.23)
  • Revision ID: git-v1:5d312e1d38efd162c6023edef6a6f453793df735
* split out object.picture from Elements so that increased coverage in test_pictures passes
* write test of Document.Copy
* add test of Document.NewSection
* add .bzrignore file to ignore pending directory
* add script to test coverage of code base
* write test script which runs nosetest on all unit tests and doctests
* centralize basic initializeDoc in tests
* move comments about test strategy
* delete old temp test code
* comment out unused code
* remove executable bit from tests so that nosetest can detect them

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
from rtfng.document.section import Section
11
11
from rtfng.document.character import Text, Inline
12
12
from rtfng.document.paragraph import Paragraph, Table, Cell
 
13
from rtfng.object.picture import Image
13
14
 
14
15
DEFAULT_TAB_WIDTH = 720
15
16