18 lines
412 B
Ruby
18 lines
412 B
Ruby
# typed: false
|
|
# frozen_string_literal: true
|
|
|
|
require "extend/string"
|
|
|
|
describe StringInreplaceExtension do
|
|
subject { described_class.new(string) }
|
|
|
|
let(:string) { +"foobar" }
|
|
|
|
describe "#sub!" do
|
|
it "adds an error to #errors when no replacement was made" do
|
|
subject.sub! "not here", "test"
|
|
expect(subject.errors).to eq(['expected replacement of "not here" with "test"'])
|
|
end
|
|
end
|
|
end
|