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

Unified Diff: client/dom/scripts/dartgenerator_test.py

Issue 9152018: Remove everything to do with snippets (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/dom/scripts/dartgenerator.py ('k') | client/dom/scripts/databasebuilder.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/scripts/dartgenerator_test.py
diff --git a/client/dom/scripts/dartgenerator_test.py b/client/dom/scripts/dartgenerator_test.py
index 290a2a416dbecf60702056e8b1e82484eab53e96..3ee28947b2491a8bd05099759a5e66b5108b2f34 100755
--- a/client/dom/scripts/dartgenerator_test.py
+++ b/client/dom/scripts/dartgenerator_test.py
@@ -77,13 +77,11 @@ FILE CONTENT:
self._output_dir = os.path.join(self._working_dir, 'output')
self._database_dir = os.path.join(self._working_dir, 'database')
self._auxiliary_dir = os.path.join(self._working_dir, 'auxiliary')
- self._snippet_dir = os.path.join(self._working_dir, 'snippet')
self.assertFalse(os.path.exists(self._database_dir))
# Create database and add one interface.
db = database.Database(self._database_dir)
os.mkdir(self._auxiliary_dir)
- os.mkdir(self._snippet_dir)
self.assertTrue(os.path.exists(self._database_dir))
content = """
@@ -133,13 +131,11 @@ FILE CONTENT:
self._database = database.Database(self._database_dir)
self._generator = dartgenerator.DartGenerator(self._auxiliary_dir,
- self._snippet_dir,
'test')
def tearDown(self):
shutil.rmtree(self._database_dir)
shutil.rmtree(self._auxiliary_dir)
- shutil.rmtree(self._snippet_dir)
def testBasicGeneration(self):
# Generate all interfaces:
« no previous file with comments | « client/dom/scripts/dartgenerator.py ('k') | client/dom/scripts/databasebuilder.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698