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

Side by Side Diff: test/test_browser_models.js

Issue 9499043: Add AGPL license
Patch Set: Add AGPL license Created 11 years, 10 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_browser_editorial.js ('k') | test/test_browser_search_view.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 /*
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).
4 Copyright (C) 2012-2013 Canonical Ltd.
5
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
8 the Free Software Foundation.
9
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,
12 SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
13 General Public License for more details.
14
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/>.
17 */
18
1 'use strict'; 19 'use strict';
2 20
3 (function() { 21 (function() {
4 22
5 describe('browser filter model', function() { 23 describe('browser filter model', function() {
6 var browser, Filter, models, Y; 24 var browser, Filter, models, Y;
7 25
8 before(function(done) { 26 before(function(done) {
9 Y = YUI(GlobalConfig).use([ 27 Y = YUI(GlobalConfig).use([
10 'juju-models', 'juju-browser-models'], function(Y) { 28 'juju-models', 'juju-browser-models'], function(Y) {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 text: 'one' 73 text: 'one'
56 }); 74 });
57 75
58 filter.get('text').should.eql('one'); 76 filter.get('text').should.eql('one');
59 filter.update({text: ''}); 77 filter.update({text: ''});
60 filter.get('text').should.equal(''); 78 filter.get('text').should.equal('');
61 }); 79 });
62 }); 80 });
63 81
64 })(); 82 })();
OLDNEW
« no previous file with comments | « test/test_browser_editorial.js ('k') | test/test_browser_search_view.js » ('j') | no next file with comments »

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