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
I want to be able to generate tests that take a variable defined in a file and pass these to an (arbitrary) function that I define in generate.yml and then compare the output to a reference given in the generate.yml.
Something like "provide indices a and b so that you can extract the list ["fee"] from ["foo", "fee", "fum"]".
I want to be able to generate tests that take a variable defined in a file and pass these to an (arbitrary) function that I define in generate.yml and then compare the output to a reference given in the generate.yml.
Something like "provide indices a and b so that you can extract the list ["fee"] from ["foo", "fee", "fum"]".
a
andb
from student work (eg a=1, b=2)lambda a, b: ["foo", "fee", "fum"][a:b]
["fee"]
)See
The text was updated successfully, but these errors were encountered: