~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/javascript/testing/assert.js

Merged db-devel into replication.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (c) 2011, Canonical Ltd. All rights reserved. */
 
2
 
 
3
YUI.add('lp.testing.assert', function(Y) {
 
4
    /**
 
5
     * A utility module for use in YUI unit-tests with custom asserts
 
6
     *
 
7
     * @module lp.testing.mockio
 
8
     */
 
9
    var namespace =  Y.namespace("lp.testing.assert");
 
10
 
 
11
    /**
 
12
     * Assert that two structures are equal by comparing their json form.
 
13
     */
 
14
    namespace.assert_equal_structure = function(expected, actual){
 
15
        Y.Assert.areEqual(JSON.stringify(expected), JSON.stringify(actual));
 
16
    };
 
17
}, '0.1', {'requires': []});