underscore.inflections
Version:
Port of ActiveSupport::Inflector::Inflections for underscore.js
26 lines (24 loc) • 767 B
HTML
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link rel="stylesheet" href="vendor/mocha.css" />
<script src="vendor/underscore.js" type="text/javascript"></script>
<script src="vendor/underscore.string.min.js" type="text/javascript"></script>
<script src="../lib/underscore.inflections.js" type="text/javascript"></script>
<script src="vendor/mocha.js" type="text/javascript"></script>
<script src="vendor/chai.js" type="text/javascript"></script>
<script type="text/javascript">
mocha.setup('bdd');
chai.should();
onload = function(){
var runner = mocha.run();
runner.globals(['_']);
};
</script>
<script src="inflections_test.js"></script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>