require "spec_helper" RSpec.describe TrueClass do describe "#to_burlap" do before do @result = true.to_burlap end it "returns a string" do expect(@result).to be_a_kind_of(String) end it "is correct" do expect(@result).to eq("1") end end end