OLD | NEW |
1 # Copyright (C) 2013 Google Inc. All rights reserved. | 1 # Copyright (C) 2013 Google Inc. All rights reserved. |
2 # | 2 # |
3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
5 # met: | 5 # met: |
6 # | 6 # |
7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
(...skipping 22 matching lines...) Expand all Loading... |
33 | 33 |
34 class ChromiumBuilderTest(unittest.TestCase): | 34 class ChromiumBuilderTest(unittest.TestCase): |
35 def test_results_url(self): | 35 def test_results_url(self): |
36 builder = ChromiumBuildBot().builder_with_name('WebKit Mac10.8 (dbg)') | 36 builder = ChromiumBuildBot().builder_with_name('WebKit Mac10.8 (dbg)') |
37 self.assertEqual(builder.results_url(), | 37 self.assertEqual(builder.results_url(), |
38 'https://storage.googleapis.com/chromium-layout-test-ar
chives/WebKit_Mac10_8__dbg_') | 38 'https://storage.googleapis.com/chromium-layout-test-ar
chives/WebKit_Mac10_8__dbg_') |
39 | 39 |
40 def test_accumulated_results_url(self): | 40 def test_accumulated_results_url(self): |
41 builder = ChromiumBuildBot().builder_with_name('WebKit Mac10.8 (dbg)') | 41 builder = ChromiumBuildBot().builder_with_name('WebKit Mac10.8 (dbg)') |
42 self.assertEqual(builder.accumulated_results_url(), | 42 self.assertEqual(builder.accumulated_results_url(), |
43 'https://storage.googleapis.com/chromium-layout-test-ar
chives/WebKit_Mac10_8__dbg_/results/layout-test-results/layout-test-results') | 43 'https://storage.googleapis.com/chromium-layout-test-ar
chives/WebKit_Mac10_8__dbg_/results/layout-test-results') |
OLD | NEW |