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