lib/shoulda/matchers/active_record/uniqueness/model.rb



module Shoulda
  module Matchers
    module ActiveRecord
      # @private
      module Uniqueness
        # @private
        class Model
          def self.next_unique_copy_of(model_name, namespace)
            model = new(model_name, namespace)

            while model.already_exists?
              model = model.next
            end

            model
          end

          def initialize(name, namespace)
            @name = name
            @namespace = namespace
          end

          def already_exists?
            namespace.has?(name)
          end

          def next
            Model.new(name.next, namespace)
          end

          def symlink_to(parent)
            namespace.set(name, parent.dup)
          end

          def to_s
            [namespace, name].join('::')
          end

          protected

          attr_reader :name, :namespace
        end
      end
    end
  end
end