2017-02-06 14:02:35 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
describe Uniquify do
|
2017-02-16 02:05:10 -05:00
|
|
|
let(:uniquify) { described_class.new }
|
|
|
|
|
2017-02-06 14:02:35 -05:00
|
|
|
describe "#string" do
|
|
|
|
it 'returns the given string if it does not exist' do
|
2017-02-16 02:05:10 -05:00
|
|
|
result = uniquify.string('test_string') { |s| false }
|
2017-02-06 14:02:35 -05:00
|
|
|
|
|
|
|
expect(result).to eq('test_string')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the given string with a counter attached if the string exists' do
|
2017-02-16 02:05:10 -05:00
|
|
|
result = uniquify.string('test_string') { |s| s == 'test_string' }
|
2017-02-06 14:02:35 -05:00
|
|
|
|
|
|
|
expect(result).to eq('test_string1')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'increments the counter for each candidate string that also exists' do
|
2017-02-16 02:05:10 -05:00
|
|
|
result = uniquify.string('test_string') { |s| s == 'test_string' || s == 'test_string1' }
|
2017-02-06 14:02:35 -05:00
|
|
|
|
|
|
|
expect(result).to eq('test_string2')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows passing in a base function that defines the location of the counter' do
|
2017-02-16 02:05:10 -05:00
|
|
|
result = uniquify.string(-> (counter) { "test_#{counter}_string" }) do |s|
|
|
|
|
s == 'test__string'
|
|
|
|
end
|
2017-02-06 14:02:35 -05:00
|
|
|
|
|
|
|
expect(result).to eq('test_1_string')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|