Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: components/sync/tools/testserver/chromiumsync_test.py

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2013 The Chromium Authors. All rights reserved. 2 # Copyright 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Tests exercising chromiumsync and SyncDataModel.""" 6 """Tests exercising chromiumsync and SyncDataModel."""
7 7
8 import pickle 8 import pickle
9 import unittest 9 import unittest
10 10
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 changes[0].client_defined_unique_tag) 671 changes[0].client_defined_unique_tag)
672 self.assertTrue(changes[0].HasField("specifics")) 672 self.assertTrue(changes[0].HasField("specifics"))
673 self.assertTrue(changes[0].specifics.HasField("experiments")) 673 self.assertTrue(changes[0].specifics.HasField("experiments"))
674 self.assertTrue( 674 self.assertTrue(
675 changes[0].specifics.experiments.HasField("keystore_encryption")) 675 changes[0].specifics.experiments.HasField("keystore_encryption"))
676 self.assertTrue( 676 self.assertTrue(
677 changes[0].specifics.experiments.keystore_encryption.enabled) 677 changes[0].specifics.experiments.keystore_encryption.enabled)
678 678
679 if __name__ == '__main__': 679 if __name__ == '__main__':
680 unittest.main() 680 unittest.main()
OLDNEW
« no previous file with comments | « components/sync/tools/testserver/chromiumsync.py ('k') | components/sync/tools/testserver/run_sync_testserver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698