| Index: chrome/common/extensions/docs/server2/integration_test.py
|
| diff --git a/chrome/common/extensions/docs/server2/integration_test.py b/chrome/common/extensions/docs/server2/integration_test.py
|
| index 68d7376ecbdf0b8ef369aea991cfbbf3489a82eb..e7ba9be0d7f4d9d3e5be2c23092f09047ad90e9b 100755
|
| --- a/chrome/common/extensions/docs/server2/integration_test.py
|
| +++ b/chrome/common/extensions/docs/server2/integration_test.py
|
| @@ -11,9 +11,6 @@ import unittest
|
| from fake_fetchers import ConfigureFakeFetchers
|
|
|
| KNOWN_FAILURES = [
|
| - # Apps samples fails because it requires fetching data from github.com.
|
| - # This should be tested though: http://crbug.com/141910.
|
| - 'apps/samples.html',
|
| ]
|
|
|
| ConfigureFakeFetchers()
|
| @@ -69,5 +66,12 @@ class IntegrationTest(unittest.TestCase):
|
| self.assertEqual(200, response.status)
|
| self.assertTrue(response.out.getvalue())
|
|
|
| + def testCron(self):
|
| + request = _MockRequest('/cron/trunk')
|
| + response = _MockResponse()
|
| + Handler(request, response, local_path='../..').get()
|
| + self.assertEqual(200, response.status)
|
| + self.assertEqual('Success', response.out.getvalue())
|
| +
|
| if __name__ == '__main__':
|
| unittest.main()
|
|
|