require 'spec_helper' describe "An RSpec Mock" do it "hides internals in its inspect representation" do m = double('cup') expect(m.inspect).to match(/#/) end end