~ubuntu-branches/debian/experimental/dogtail/experimental

« back to all changes in this revision

Viewing changes to examples/evolution-test-survives-email-CAN-2005-0806.py

  • Committer: Bazaar Package Importer
  • Author(s): Jose Carlos Garcia Sogo
  • Date: 2006-12-16 10:57:30 UTC
  • mfrom: (1.2.1 upstream) (3.1.1 edgy)
  • Revision ID: james.westby@ubuntu.com-20061216105730-utt6mcidfssawo7j
Tags: 0.6.1-3
pyhton-at-spi has to be added as dependency (Closes: #402752)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
# Dogtail demo script
3
 
__author__ = 'David Malcolm <dmalcolm@redhat.com>'
4
 
 
5
 
# Test importing an email that crashed older versions of Evolution
6
 
#
7
 
# Assumes evolution is configured and is running
8
 
#
9
 
# CAN-2005-0806.mbox is attachment 44836 in bugzilla.gnome.org
10
 
# It is an email attached to bug 272609 (which was bug 72609 in the bugzilla.ximian.com)
11
 
# which crashed an unpatched Evolution 2.0.3 when opened.
12
 
# See http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2005-0806
13
 
 
14
 
from dogtail.apps.wrappers.evolution import *
15
 
 
16
 
evo = EvolutionApp()
17
 
evo.importSingleEmail(path.abspath("data/CAN-2005-0806.mbox"))