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

Unified Diff: test/test_service_view.js

Issue 6858045: Example module for env view refactor
Patch Set: Example module for env view refactor Created 12 years, 4 months ago
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/test_notifier_widget.js ('k') | test/test_topology.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/test_service_view.js
=== modified file 'test/test_service_view.js'
--- test/test_service_view.js 2012-10-29 10:25:58 +0000
+++ test/test_service_view.js 2012-11-08 18:16:07 +0000
@@ -98,7 +98,8 @@
var view = makeServiceView(),
unit = container.one('ul.thumbnails').one('div.unit'),
showUnitCalled = false;
- view.on('*:showUnit', function() {
+ view.on('navigateTo', function(e) {
+ assert.equal('/unit/mysql-0/', e.url);
showUnitCalled = true;
});
unit.simulate('click');
@@ -304,7 +305,8 @@
var destroy = container.one('#destroy-modal-panel .btn-danger');
destroy.simulate('click');
var called = false;
- view.on('showEnvironment', function(ev) {
+ view.on('navigateTo', function(ev) {
+ assert.equal('/', ev.url);
called = true;
});
var callbacks = Y.Object.values(env._txn_callbacks);
« no previous file with comments | « test/test_notifier_widget.js ('k') | test/test_topology.js » ('j') | no next file with comments »

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