Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
I'm getting this failure message,
Must allow to set code 'abnyyvuciwhtdi': no id given
Dispite all my test cases passing. What does that 'no id given' message mean?
My test cases ( that are all green )
Test.expect_error { Code.a }
Test.expect_no_error { Code.a = 10 }
Test.expect( Code.a == 10 )
Test.expect_error { Code.valghpf }
Test.expect_no_error { Code.valghpf = 22 }
Test.expect( Code.valghpf == 22 )
Test.expect_error { Code.nil }
Test.expect_no_error { Code.nil = 22 }
Test.expect( Code.nil == 22 )
This comment is hidden because it contains spoiler information about the solution