require '/usercode/exampleb'
RSpec.describe "CodingRoomsUnitTests" do
describe "Run add_five() with parameter 5" do
it "expect the function to return 10" do
expect(add_five(5)).to eq(10)
describe "Run add_five() with parameter 0" do
it "expect the function to return 5" do
expect(add_five(0)).to eq(5)
describe "Run add_five() with parameter 6" do
it "expect the function to return 11" do
expect(add_five(6)).to eq(11)