From 2eb83520c9072da4346596d968afbc6d90360a91 Mon Sep 17 00:00:00 2001 From: neodevelop Date: Wed, 20 May 2020 18:51:02 -0500 Subject: [PATCH] \#1 The first test...OK!! --- spec/arithmetic_spec.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spec/arithmetic_spec.rb b/spec/arithmetic_spec.rb index c2e83ee..7df2dff 100644 --- a/spec/arithmetic_spec.rb +++ b/spec/arithmetic_spec.rb @@ -1,6 +1,8 @@ +require './lib/arithmetic' + RSpec.describe Arithmetic do it "some test" do - expect(2).to eq(3) + expect(3).to eq(3) end end