blob: 40c225d9a04cf3821ee662ec86dc5b4ecefd700a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
steal("funcunit", function(){
module("alias test", {
setup: function(){
S.open("//alias/alias.html");
}
});
test("Copy Test", function(){
equals(S("h1").text(), "Welcome to JavaScriptMVC 3.2!","welcome text");
});
})
|