GAE TestBed 是一个用来简化应用程序在 Google App Engine 平台上测试的一些测试用例。
例如下面是一个用来测试邮件发送的用例:[code]import unittest
from gaetestbed import MailTestCase
class MyTestCase(MailTestCase, unittest.TestCase):
def test_email_sent(self):
send_email_to('test@example.org') # Some method that sends e-mail...
self.assertEmailSent(to='test@example.org')
self.assertEqual(len(self.get_sent_messages()), 1)[/code]主页:https://accounts.google.com/ServiceLogin?service=code<mpl=phosting&continue=http%3A%2F%2Fcode.google.com%2Fp%2Fgae-testbed%2F
来自:开源中国社区

