Sha256: fd294ecfa32b7a1ee1248a356339f774e51d7a47ce6350060db70e385295b3ee
Contents?: true
Size: 389 Bytes
Versions: 8
Compression:
Stored size: 389 Bytes
Contents
require 'spec_helper' describe CommandResult do context "#inspect" do it "will not display sensitive information" do command_result = described_class.new("aaa", "bbb", "ccc", 0).inspect expect(command_result.include?("aaa")).to be_false expect(command_result.include?("bbb")).to be_false expect(command_result.include?("ccc")).to be_false end end end
Version data entries
8 entries across 8 versions & 1 rubygems