Skip to content

Commit

Permalink
Add test fixture for issue yui#2.
Browse files Browse the repository at this point in the history
  • Loading branch information
reid committed Sep 8, 2010
1 parent d1f1f24 commit 7707999
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions test/fixture with spaces/fixture again.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<title>Fixture</title>

<body class="yui3-skin-sam">
<h1>Yeti Test Test With Spaces</h1>

<script src="../vendor/yui3/build/yui/yui.js"></script>
<script>
(function () {
YUI({
base : "../vendor/yui3/build/",
filter : "debug",
useConsole : true
}).use("test", "console", function(Y) {

new Y.Console().render();

Y.Test.Runner.add(new Y.Test.Case({
name : "Yeti Test Test With Spaces",
"$yetify should report test results" : function () {
Y.Assert.isString("horray");
}
}));
Y.Test.Runner.run();

});
})();
</script>

</body>

0 comments on commit 7707999

Please sign in to comment.