Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Side by Side Diff: lib/src/prism/tests/languages/rest/command-line-option_feature.test

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 -a Simple option
2 -b
3 Simple option on next line
4 --very-long-option Long option
5 +f Option using +
6 -f FILE Option with value 1
7 --file=FILE Option with value 2
8 -2, --two Two options in a row.
9 -f FILE, --file=FILE Two options with values in a row.
10 /V A VMS/DOS-style option.
11
12 ----------------------------------------------------
13
14 [
15 ["command-line-option", "-a"],
16 " Simple option\r\n",
17 ["command-line-option", "-b"],
18 "\r\n Simple option on next line\r\n",
19 ["command-line-option", "--very-long-option"],
20 " Long option\r\n",
21 ["command-line-option", "+f"],
22 " Option using +\r\n",
23 ["command-line-option", "-f FILE"],
24 " Option with value 1\r\n",
25 ["command-line-option", "--file=FILE"],
26 " Option with value 2\r\n",
27 ["command-line-option", "-2, --two"],
28 " Two options in a row.\r\n",
29 ["command-line-option", "-f FILE, --file=FILE"],
30 " Two options with values in a row.\r\n",
31 ["command-line-option", "/V"],
32 " A VMS/DOS-style option."
33 ]
34
35 ----------------------------------------------------
36
37 Checks for command line options.
OLDNEW
« no previous file with comments | « lib/src/prism/tests/languages/r/string_feature.test ('k') | lib/src/prism/tests/languages/rest/comment_feature.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698