You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2012/12/30 22:02:35 UTC

[2/5] git commit: updated tests

updated tests


Project: http://git-wip-us.apache.org/repos/asf/cordova-coho/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-coho/commit/fe641e20
Tree: http://git-wip-us.apache.org/repos/asf/cordova-coho/tree/fe641e20
Diff: http://git-wip-us.apache.org/repos/asf/cordova-coho/diff/fe641e20

Branch: refs/heads/master
Commit: fe641e2062247a9875276e159efcc66f8db1b27e
Parents: 1ba3633
Author: steven gill <st...@apache.org>
Authored: Mon Nov 12 14:48:13 2012 -0800
Committer: steven gill <st...@apache.org>
Committed: Mon Nov 12 14:48:13 2012 -0800

----------------------------------------------------------------------
 test/tests.coffee |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/fe641e20/test/tests.coffee
----------------------------------------------------------------------
diff --git a/test/tests.coffee b/test/tests.coffee
index 0658d70..c441039 100644
--- a/test/tests.coffee
+++ b/test/tests.coffee
@@ -299,36 +299,36 @@ exports['test if changelog generated'] = (test)->
 exports['confirm src zip file']=(test)->
 	test.expect 1
 	fs = require('fs')
-	test.ok fs.existsSync("./temp/release/src/cordova-"+VERSION+"-incubating-src.zip")
+	test.ok fs.existsSync("./temp/release/src/cordova-"+VERSION+"-src.zip")
 	test.done()
 
 exports['confirm src asc file']=(test)->
 	test.expect 1
 	fs = require('fs')
-	test.ok fs.existsSync("./temp/release/src/cordova-"+VERSION+"-incubating-src.zip.asc")
+	test.ok fs.existsSync("./temp/release/src/cordova-"+VERSION+"-src.zip.asc")
 	test.done()
 
 exports['confirm src md5 file']=(test)->
 	test.expect 1
 	fs = require('fs')
-	test.ok fs.existsSync("./temp/release/src/cordova-"+VERSION+"-incubating-src.zip.md5")
+	test.ok fs.existsSync("./temp/release/src/cordova-"+VERSION+"-src.zip.md5")
 	test.done()	
 
 exports['test if src zip is empty'] = (test)->
 	test.expect 1
 	fs = require('fs')
-	test.ok fs.statSync("./temp/release/src/cordova-"+VERSION+"-incubating-src.zip").size != 0, 'src zip created too soon'
+	test.ok fs.statSync("./temp/release/src/cordova-"+VERSION+"-src.zip").size != 0, 'src zip created too soon'
 	test.done()
 
 exports['test if src asc is empty'] = (test)->
 	test.expect 1
 	fs = require('fs')
-	test.ok fs.statSync("./temp/release/src/cordova-"+VERSION+"-incubating-src.zip.asc").size != 0, 'src asc created too soon'
+	test.ok fs.statSync("./temp/release/src/cordova-"+VERSION+"-src.zip.asc").size != 0, 'src asc created too soon'
 	test.done()
 
 exports['test if src md5 is empty'] = (test)->
 	test.expect 1
 	fs = require('fs')
-	test.ok fs.statSync("./temp/release/src/cordova-"+VERSION+"-incubating-src.zip.md5").size != 0, 'src md5 created too soon'
+	test.ok fs.statSync("./temp/release/src/cordova-"+VERSION+"-src.zip.md5").size != 0, 'src md5 created too soon'
 	test.done()