Tutorial by Examples

compare using eq (==) RSpec.describe "a string" do it "is equal to another string of the same value" do expect("this string").to eq("this string") end it "is not equal to another string of a different value" do expect("this...

Page 1 of 1