<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,4 @@
 *.pyc
 *~
-*#
\ No newline at end of file
+*#
+_trial_temp</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -10,14 +10,14 @@ import sys
 sys.path.append(&quot;lib&quot;)
 sys.path.append(&quot;../lib&quot;)
 
-import unittest
+from twisted.trial import unittest
 
 import txml
 
 class XMLParserTest(unittest.TestCase):
 
     def parse_test(self, filename, parser):
-        with open(filename) as f:
+        with open(&quot;../test/&quot; + filename) as f:
             parser.write(f.read())
 
     def testParsingEntry(self):
@@ -45,7 +45,7 @@ class XMLParserTest(unittest.TestCase):
                     'to run errands... If I can just stop tweeting... '
                     '&amp;lt;b&amp;gt;TWITTER&amp;lt;/b&amp;gt; IS LIKE CRACK!',
                      e.content)
-        self.parse_test('test/search.atom', txml.Feed(gotEntry))
+        self.parse_test('search.atom', txml.Feed(gotEntry))
 
     def testNewParsingEntry(self):
         ts=self
@@ -53,7 +53,7 @@ class XMLParserTest(unittest.TestCase):
             if e.id == 'tag:search.twitter.com,2005:1229915194':
                 ts.assertEquals('&amp;lt;a href=&quot;http://www.twhirl.org/&quot;&amp;gt;twhirl&amp;lt;/a&amp;gt;',
                                 e.twitter_source)
-        self.parse_test('test/new-search.atom', txml.Feed(gotEntry))
+        self.parse_test('new-search.atom', txml.Feed(gotEntry))
 
     def testParsingUser(self):
         ts=self
@@ -72,7 +72,7 @@ class XMLParserTest(unittest.TestCase):
                 ts.assertEquals('http://www.imdb.com/name/nm0944981/', u.url)
                 ts.assertEquals('true', u.protected)
                 ts.assertEquals('36', u.followers_count)
-        self.parse_test('test/friends.xml', txml.Users(gotUser))
+        self.parse_test('friends.xml', txml.Users(gotUser))
 
     def testParsingDirectMessages(self):
         ts=self
@@ -108,7 +108,7 @@ class XMLParserTest(unittest.TestCase):
                 dm.recipient.url)
             ts.assertEquals('false', dm.recipient.protected)
             ts.assertEquals('198', dm.recipient.followers_count)
-        self.parse_test('test/dm.xml', txml.Direct(gotDirectMessage))
+        self.parse_test('dm.xml', txml.Direct(gotDirectMessage))
 
     def testParsingStatusList(self):
         ts=self
@@ -136,7 +136,7 @@ class XMLParserTest(unittest.TestCase):
                 ts.assertEquals('false', s.user.protected)
                 ts.assertEquals('516', s.user.followers_count)
 
-        self.parse_test('test/status_list.xml', txml.StatusList(gotStatusItem))
+        self.parse_test('status_list.xml', txml.StatusList(gotStatusItem))
 
     def testParsingUser(self):
         ts = self
@@ -180,10 +180,10 @@ class XMLParserTest(unittest.TestCase):
             ts.assertEquals('false', u.status.favorited)
             ts.assertEquals('', u.status.in_reply_to_screen_name)
 
-        self.parse_test('test/user.xml', txml.Users(gotUser))
+        self.parse_test('user.xml', txml.Users(gotUser))
 
     def testStatusUpdateParse(self):
-        with open(&quot;test/update.xml&quot;) as f:
+        with open(&quot;../test/update.xml&quot;) as f:
             id = txml.parseUpdateResponse(f.read())
             self.assertEquals('1045518625', id)
 </diff>
      <filename>test/txml_test.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>b3b423dd1603105123dca0d7f2e683b991a32eac</id>
    </parent>
  </parents>
  <author>
    <name>Dustin Sallings</name>
    <email>dustin@spy.net</email>
  </author>
  <url>http://github.com/dustin/twitty-twister/commit/ca864f9d92319fcfb6cdc0de4043fef7e42d4e13</url>
  <id>ca864f9d92319fcfb6cdc0de4043fef7e42d4e13</id>
  <committed-date>2009-09-12T19:35:37-07:00</committed-date>
  <authored-date>2009-09-12T19:35:37-07:00</authored-date>
  <message>Updated test suite for trial.</message>
  <tree>eaab15bf2095b23d1b924d0320be83776a9765fc</tree>
  <committer>
    <name>Dustin Sallings</name>
    <email>dustin@spy.net</email>
  </committer>
</commit>
