-
-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch S3 version listing from demo server to real server
- Loading branch information
1 parent
8a4f91c
commit 620bacf
Showing
6 changed files
with
38 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
component extends="org.lucee.cfml.test.LuceeTestCase" skip="true"{ | ||
function beforeAll(){ | ||
|
||
} | ||
|
||
function run( testResults , testBox ) { | ||
describe( "test listing external versions", function() { | ||
|
||
|
||
it( title='test version listing', body=function( currentSpec ) { | ||
var versions=LuceeVersionsList(); | ||
expect(isArray(versions)).toBeTrue(); | ||
expect(arrayLen(versions)>100).toBeTrue(); | ||
}); | ||
|
||
it( title='test Maven specific version listing', body=function( currentSpec ) { | ||
var versions=LuceeVersionsListMvn(); | ||
expect(isArray(versions)).toBeTrue(); | ||
expect(arrayLen(versions)>100).toBeTrue(); | ||
}); | ||
|
||
it( title='test S3 specific version listing', body=function( currentSpec ) { | ||
var versions=LuceeVersionsListS3(); | ||
expect(isQuery(versions)).toBeTrue(); | ||
expect(versions.recordcount>100).toBeTrue(); | ||
}); | ||
}); | ||
} | ||
|
||
} |