OLD | NEW |
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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 done(); | 120 done(); |
121 }); | 121 }); |
122 }); | 122 }); |
123 | 123 |
124 after(function(done) { | 124 after(function(done) { |
125 env.destroy(); | 125 env.destroy(); |
126 done(); | 126 done(); |
127 }); | 127 }); |
128 | 128 |
129 beforeEach(function() { | 129 beforeEach(function() { |
130 container = testUtils.makeContainer(); | 130 container = testUtils.makeContainer('content'); |
131 db = new models.Database(); | 131 db = new models.Database(); |
132 // Use a clone to avoid any mutation | 132 // Use a clone to avoid any mutation |
133 // to the input set (as happens with processed | 133 // to the input set (as happens with processed |
134 // annotations, its a direct reference). | 134 // annotations, its a direct reference). |
135 db.onDelta({data: Y.clone(environment_delta)}); | 135 db.onDelta({data: Y.clone(environment_delta)}); |
136 view = new views.environment({ | 136 view = new views.environment({ |
137 container: container, | 137 container: container, |
138 db: db, | 138 db: db, |
139 env: { | 139 env: { |
140 update_annotations: function() {}, | 140 update_annotations: function() {}, |
(...skipping 1089 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1230 ); | 1230 ); |
1231 | 1231 |
1232 // The mysql charm has an icon from on the server. | 1232 // The mysql charm has an icon from on the server. |
1233 assert.equal( | 1233 assert.equal( |
1234 boxes['cs:mysql-1'].icon, | 1234 boxes['cs:mysql-1'].icon, |
1235 'http://localhost/api/2/charm/mysql-1/icon.svg' | 1235 'http://localhost/api/2/charm/mysql-1/icon.svg' |
1236 ); | 1236 ); |
1237 }); | 1237 }); |
1238 }); | 1238 }); |
1239 })(); | 1239 })(); |
OLD | NEW |