File: test_symbol.py

package info (click to toggle)
svgwrite 1.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,304 kB
  • sloc: python: 12,524; makefile: 116; sh: 5
file content (31 lines) | stat: -rw-r--r-- 946 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python
#coding:utf-8
# Author:  mozman --<mozman@gmx.at>
# Purpose: test symbol element
# Created: 25.09.2010
# Copyright (C) 2010, Manfred Moitzi
# License: MIT License

import sys
import unittest

from svgwrite.container import Symbol, Group

class TestSymbol(unittest.TestCase):
    def test_constructor(self):
        symbol = Symbol()
        self.assertEqual(symbol.tostring(), "<symbol />")

    def test_add_subelement(self):
        symbol = Symbol(id='symbol')
        group = Group(id='group')
        symbol.add(group)
        self.assertEqual(symbol.tostring(), '<symbol id="symbol"><g id="group" /></symbol>')

    def test_add_group(self):
        symbol = Symbol(id='symbol')
        group = symbol.add(Group(id='group')) # implicit call of add
        self.assertEqual(symbol.tostring(), '<symbol id="symbol"><g id="group" /></symbol>')

if __name__=='__main__':
    unittest.main()