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.
the test case seems to be for a different kata
From Ruby 3.0, RSpec is used under the hood.
See https://rspec.info/
Defaults to the global
describe
for backwards compatibility, butRSpec.desribe
works as well.describe "Example" do
it "should return the sum" do
expect(add(1, 1)).to eq(2)
# The following is still supported, but new tests should now use them.
# Test.assert_equals(add(1, 1), 2)
end
end
This comment is hidden because it contains spoiler information about the solution