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
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
},
test_multi_args: function() {
//This should create both Y.foo and Y.bar, not Y.foo.bar
},
test_multi_args_dotted: function() {
//This should create both Y.foo2.davglass and Y.bar2.davglass
}
});
});