Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(988)

Side by Side Diff: test/test_feature_flags.js

Issue 13775044: Remove the serviceInspector feature flag.
Patch Set: Remove the serviceInspector feature flag. Created 11 years, 6 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/test_environment_view.js ('k') | test/test_ghost_inspector.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 This file is part of the Juju GUI, which lets users view and manage Juju 2 This file is part of the Juju GUI, which lets users view and manage Juju
3 environments within a graphical interface (https://launchpad.net/juju-gui). 3 environments within a graphical interface (https://launchpad.net/juju-gui).
4 Copyright (C) 2012-2013 Canonical Ltd. 4 Copyright (C) 2012-2013 Canonical Ltd.
5 5
6 This program is free software: you can redistribute it and/or modify it under 6 This program is free software: you can redistribute it and/or modify it under
7 the terms of the GNU Affero General Public License version 3, as published by 7 the terms of the GNU Affero General Public License version 3, as published by
8 the Free Software Foundation. 8 the Free Software Foundation.
9 9
10 This program is distributed in the hope that it will be useful, but WITHOUT 10 This program is distributed in the hope that it will be useful, but WITHOUT
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 85
86 '/:flags:/foo/bar=baz=bar/': { 86 '/:flags:/foo/bar=baz=bar/': {
87 foo: true, 87 foo: true,
88 bar: 'baz=bar' 88 bar: 'baz=bar'
89 } 89 }
90 }; 90 };
91 91
92 for (var url in urls) { 92 for (var url in urls) {
93 if (urls.hasOwnProperty(url)) { 93 if (urls.hasOwnProperty(url)) {
94 var expected = urls[url]; 94 var expected = urls[url];
95 // XXX frankban: remove this line once the service inspector
96 // transition is completed.
97 expected.serviceInspector = true;
98 assert.deepEqual(featureFlags(url), expected); 95 assert.deepEqual(featureFlags(url), expected);
99 } 96 }
100 } 97 }
101 }); 98 });
102 99
103 }); 100 });
104 101
105 })(); 102 })();
OLDNEW
« no previous file with comments | « test/test_environment_view.js ('k') | test/test_ghost_inspector.js » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b