~matsubara/juju-gui/tarmac-test

« back to all changes in this revision

Viewing changes to test/test_model.js

  • Committer: Matthew Scott
  • Date: 2013-01-09 17:23:33 UTC
  • mfrom: (307 juju-gui)
  • mto: This revision was merged to the branch mainline in revision 312.
  • Revision ID: matthew.scott@canonical.com-20130109172333-ad6ndevmn5p44dz0
Merging with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
describe('charm normalization', function() {
4
4
  var models;
5
5
 
6
 
  before(function() {
 
6
  before(function(done) {
7
7
    YUI(GlobalConfig).use('juju-models', 'juju-charm-models', function(Y) {
8
8
      models = Y.namespace('juju.models');
 
9
      done();
9
10
    });
10
11
  });
11
12