Skip to content

Commit

Permalink
Fixed notes and some tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Brantley Harris committed Apr 17, 2010
1 parent 3d6ce91 commit d3ef38d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions NOTES
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
= TODO =
Virtual Env System - (yay pip)
Source Fixes - (make sure everything works properly)
Task System - (like cron, but you know better)
LogPath - (fix the logs to take a logpath instead of path+name)
Expand Down Expand Up @@ -30,4 +29,5 @@
Fix PHP Bugs
Daemon Dance
Demonization - (also set user / group for root)
-- Use As My Actual Webserver Milestone --
-- Use As My Actual Webserver Milestone --
Virtual Env System - (yay pip)
2 changes: 1 addition & 1 deletion tests/test_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def test_wsgi(self):

response = self.request(service.address, "")
self.assertTrue( response.status, 200 )
self.assertEqual( response.read(), "Deployment - A\n\nPath: /Users/deadwisdom/projects/minister/tests/repo/services/a" )
self.assertTrue( response.read().startswith("Deployment - A\n") )

service.stop()

Expand Down
2 changes: 1 addition & 1 deletion tests/test_tokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_tokens(self):

response = self.request(t.service.address, "")
self.assertTrue( response.status, 200 )
self.assertEqual( response.read(), "Deployment - A\n\nPath: /Users/deadwisdom/projects/minister/tests/repo/services/a" )
self.assertTrue( response.read().startswith("Deployment - A\n") )

t.withdraw()

0 comments on commit d3ef38d

Please sign in to comment.