You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Create the test generator in '${generator_tpl_file}'
107
+
- The test generator uses the canonical data from 'https://github.com/exercism/problem-specifications/blob/main/exercises/${slug}/canonical-data.json'
108
+
- Any test cases you don't want to implement, mark them in 'exercises/practice/${slug}/.meta/tests.toml' with "include = false"
109
+
- Run 'bin/generate-exercise-tests ${slug}' to generate the tests
110
+
EOF
111
+
)
112
+
else
113
+
TEST_STEPS=$(cat <<EOF
101
114
- Create the test suite in $(jq -r '.test'<<<"${files}")
102
115
- The tests should be based on the canonical data at 'https://github.com/exercism/problem-specifications/blob/main/exercises/${slug}/canonical-data.json'
103
116
- Any test cases you don't implement, mark them in 'exercises/practice/${slug}/.meta/tests.toml' with "include = false"
117
+
EOF
118
+
)
119
+
fi
120
+
121
+
cat <<NEXT_STEPS
122
+
Your next steps are:
123
+
${TEST_STEPS}
104
124
- Create the example solution in $(jq -r '.example'<<<"${files}")
105
125
- Verify the example solution passes the tests by running 'bin/verify-exercises ${slug}'
106
126
- Create the stub solution in $(jq -r '.solution'<<<"${files}")
0 commit comments