require "spec_helper" require_relative "shared_examples_for_pattern1" describe BrDocuments::IE::PI do describe "#formatted" do it "returns a formatted ie" do ie = BrDocuments::IE::PI.new("123456789") expect(ie.formatted).to eq "123456789" end end it_behaves_like "a pattern1", "PI" end