Skip to content

Commit

Permalink
add spec files
Browse files Browse the repository at this point in the history
  • Loading branch information
brentkirby committed Sep 5, 2012
1 parent 9acbfa4 commit a461292
Show file tree
Hide file tree
Showing 14 changed files with 6,614 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/jquery-1.8.1.min.js

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions spec.html
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html>
<head>
<title>Transit Spec Suite</title>
<link rel="stylesheet" type="text/css" href="spec/lib/jasmine.css">
<script type="text/javascript" src="spec/lib/jasmine.js"></script>
<script type="text/javascript" src="spec/lib/jasmine-html.js"></script>
<script type="text/javascript" src="lib/jquery-1.8.1.min.js"></script>
<script type="text/javascript" src="lib/backbone-0.9.2.js"></script>
<script type="text/javascript" src="lib/underscore-1.3.3.js"></script>
<script type="text/javascript" src="build/transit.js"></script>

<script type="text/javascript">
(function() {
var jasmineEnv = jasmine.getEnv();
jasmineEnv.updateInterval = 1000;

var htmlReporter = new jasmine.HtmlReporter();

jasmineEnv.addReporter(htmlReporter);

jasmineEnv.specFilter = function(spec) {
return htmlReporter.specFilter(spec);
};

var currentWindowOnload = window.onload;

window.onload = function() {
if (currentWindowOnload) {
currentWindowOnload();
}
execJasmine();
};

function execJasmine() {
jasmineEnv.execute();
}

})();
</script>
</head>
<body>
</body>
</html>
Binary file added spec/jasmine-standalone-1.2.0.zip
Binary file not shown.
20 changes: 20 additions & 0 deletions spec/jasmine-standalone-1.2.0/lib/jasmine-1.2.0/MIT.LICENSE
@@ -0,0 +1,20 @@
Copyright (c) 2008-2011 Pivotal Labs

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 comments on commit a461292

Please sign in to comment.