1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
- <link rel="stylesheet" href="test.css">
- <title>Zepto iOS3 unit tests</title>
- <script src="../vendor/evidence.js"></script>
- <script src="evidence_runner.js"></script> <script>
- // avoid caching
- (function(){
- function load(scripts){
- scripts.split(' ').forEach(function(script){
- document.write('<script src="../src/'+script+'.js?'+(+new Date)+'"></scr'+'ipt>')
- })
- }
- load('ios3 zepto ie')
- })()
- </script>
- </head>
- <body>
- <h1>Zepto iOS3 unit tests</h1>
- <p id="results">
- Running… see browser console for results
- </p>
- <script>
- (function(){
- Evidence('PolyfillTest', {
- // test to see if we augment String.prototype.trim if not supported natively
- testTrim: function(t){
- t.assertEqual("blah", " blah ".trim())
- t.assertEqual("bl \n ah", " bl \n ah ".trim())
- },
- // test to see if we augment Array.prototype.reduceif not supported natively
- testReduce: function(t){
- t.assertEqual(
- 10,
- [0,1,2,3,4].reduce(function(p,c){ return p+c })
- )
- t.assertEqual(
- 20,
- [0,1,2,3,4].reduce(function(p,c){ return p+c }, 10)
- )
- var flattened = [[0,1], [2,3], [4,5]].reduce(function(a,b){
- return a.concat(b)
- })
- t.assertEqual(6, flattened.length)
- for(var i=0;i<6;i++) t.assertEqual(i, flattened[i])
- }
- })
- })()
- </script>
- </body>
- </html>
|