LEFT | RIGHT |
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 |
11 ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, | 11 ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, |
12 SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero | 12 SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero |
13 General Public License for more details. | 13 General Public License for more details. |
14 | 14 |
15 You should have received a copy of the GNU Affero General Public License along | 15 You should have received a copy of the GNU Affero General Public License along |
16 with this program. If not, see <http://www.gnu.org/licenses/>. | 16 with this program. If not, see <http://www.gnu.org/licenses/>. |
17 */ | 17 */ |
18 | 18 |
19 'use strict'; | 19 'use strict'; |
20 | 20 |
21 describe('bundle module', function() { | 21 describe('bundle module', function() { |
22 var juju, models, utils, views, Y, bundleModule; | 22 var utils, views, Y, bundleModule; |
23 var bundle, container, fakebackend; | 23 var bundle, container, fakebackend; |
24 | 24 |
25 before(function(done) { | 25 before(function(done) { |
26 Y = YUI(GlobalConfig).use([ | 26 Y = YUI(GlobalConfig).use([ |
27 'juju-topology', | 27 'juju-topology', |
28 'juju-view-bundle', | 28 'juju-view-bundle', |
29 'juju-charm-store', | 29 'juju-charm-store', |
30 'juju-models', | 30 'juju-models', |
31 'juju-tests-utils' | 31 'juju-tests-utils' |
32 ], | 32 ], |
33 function(Y) { | 33 function(Y) { |
34 juju = Y.namespace('juju'); | |
35 models = Y.namespace('juju.models'); | |
36 utils = Y.namespace('juju-tests.utils'); | 34 utils = Y.namespace('juju-tests.utils'); |
37 views = Y.namespace('juju.views'); | 35 views = Y.namespace('juju.views'); |
38 done(); | 36 done(); |
39 }); | 37 }); |
40 }); | 38 }); |
41 | 39 |
42 beforeEach(function() { | 40 beforeEach(function() { |
43 container = utils.makeContainer(); | 41 container = utils.makeContainer(); |
44 }); | 42 }); |
45 | 43 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 assert.equal(indicator.attr('y'), '64'); | 100 assert.equal(indicator.attr('y'), '64'); |
103 | 101 |
104 container.remove(true); | 102 container.remove(true); |
105 bundle.destroy(); | 103 bundle.destroy(); |
106 done(); | 104 done(); |
107 }).then(undefined, done); | 105 }).then(undefined, done); |
108 }); | 106 }); |
109 | 107 |
110 }); | 108 }); |
111 | 109 |
LEFT | RIGHT |