namespace-test.js revision a6572efd94a31dd334bcb32d0bf4086df93de899
name: "Namespace tests",
test_create_namespace: function () {
// set up Y.my.namespace
// use the returned reference, assign a value
// check for the assigned value using the full path
Y.Assert.areEqual(Y.my.namespace.test, "yahoo_my_namespace_test", "The namespace was not set up correctly");
// assign a value to my to test that it doesn't get wiped out
// create another namespace on my
// make sure my stays the same
}
});
});