-
-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Listing variable expansion patterns in the Include runner. #661
Conversation
// If there is a variable expansion, it is reinterpreted in a form without quotes. | ||
&& vars.c == 12345 | ||
&& vars.d == 54321 | ||
&& vars.e == 123459 | ||
&& vars.f == 543219 | ||
&& vars.g == 912345 | ||
&& vars.h == 954321 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The following expectations were assumed
// If there is a variable expansion, it is reinterpreted in a form without quotes. | |
&& vars.c == 12345 | |
&& vars.d == 54321 | |
&& vars.e == 123459 | |
&& vars.f == 543219 | |
&& vars.g == 912345 | |
&& vars.h == 954321 | |
// If there is a variable expansion, it is reinterpreted in a form without quotes. | |
&& vars.c == 12345 | |
&& vars.d == "54321" | |
&& vars.e == "123459" | |
&& vars.f == "543219" | |
&& vars.g == "912345" | |
&& vars.h == "954321" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then, if there is variable expansion, there is no way to pass numbers.
Code Metrics Report
Details | | main (067ca7a) | #661 (a5e7ab0) | +/- |
|---------------------|----------------|----------------|-------|
+ | Coverage | 70.0% | 70.0% | +0.0% |
| Files | 52 | 52 | 0 |
| Lines | 5727 | 5727 | 0 |
+ | Covered | 4007 | 4008 | +1 |
| Code to Test Ratio | 1:0.7 | 1:0.7 | 0.0 |
| Code | 11489 | 11489 | 0 |
| Test | 8079 | 8079 | 0 |
+ | Test Execution Time | 5m41s | 4m45s | -56s | Reported by octocov |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was a very good test and understanding of the behavior.
Thank you very much!
ref: #660
SSIA.