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

Side by Side Diff: tools/telemetry/telemetry/page_unittest.py

Issue 12294002: Revert 182991 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « tools/telemetry/telemetry/page_test.py ('k') | tools/telemetry/telemetry/perf_tests_helper.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 import unittest 4 import unittest
5 5
6 from telemetry import page 6 from telemetry import page
7 7
8 class TestPage(unittest.TestCase): 8 class TestPage(unittest.TestCase):
9 def testGetUrlBaseDirAndFileForAbsolutePath(self): 9 def testGetUrlBaseDirAndFileForAbsolutePath(self):
10 apage = page.Page('file:///somedir/otherdir/file.html', 10 apage = page.Page('file:///somedir/otherdir/file.html',
(...skipping 21 matching lines...) Expand all
32 self.assertEqual(filename, 'otherdir/file.html') 32 self.assertEqual(filename, 'otherdir/file.html')
33 33
34 def testDisplayUrlForHttp(self): 34 def testDisplayUrlForHttp(self):
35 self.assertEquals(page.Page('http://www.foo.com/', None).display_url, 35 self.assertEquals(page.Page('http://www.foo.com/', None).display_url,
36 'www.foo.com/') 36 'www.foo.com/')
37 37
38 def testDisplayUrlForFile(self): 38 def testDisplayUrlForFile(self):
39 self.assertEquals( 39 self.assertEquals(
40 page.Page('file:///../../otherdir/file.html', None).display_url, 40 page.Page('file:///../../otherdir/file.html', None).display_url,
41 'file.html') 41 'file.html')
OLDNEW
« no previous file with comments | « tools/telemetry/telemetry/page_test.py ('k') | tools/telemetry/telemetry/perf_tests_helper.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698