source: Dev/trunk/node_modules/grunt-curl/test/curl_test_outline.js

Last change on this file was 484, checked in by hendrikvanantwerpen, 11 years ago

Commit node_modules, to make checkouts and builds more deterministic.

File size: 806 bytes
Line 
1module.exports = [{
2// Clean up the test directory
3  'A clean test directory': {
4    'is clean': true
5  }
6}, {
7// curl tests
8  'grunt curl': {
9    'downloading a js (utf16) file': {
10      'is successful': true
11    },
12    'downloading a zip (binary) file': {
13      'is successful': true
14    },
15    'downloading a file from an invalid domain': {
16      'throws an error': true,
17      'does not create the file': true
18    },
19    'downloading a nonexistant file': {
20      'throws an error': true,
21      'does not create the file': true
22    }
23  }
24}, {
25// curl-dir tests
26  'grunt curl-dir': {
27    'downloading multiple files': {
28      'is successful': true
29    },
30    'downloading brace expanded files': {
31      'is successful': true
32    },
33    'using a custom router': {
34      'is successful': true
35    }
36  }
37}];
Note: See TracBrowser for help on using the repository browser.