summaryrefslogtreecommitdiffstats
path: root/test/exemplars/subversion_repository_exemplar.rb
blob: 2d48cb2f333b699223ca040a349b58c219388efb (plain)
1
2
3
4
5
6
7
8
9
10
11
class Repository::Subversion < Repository
  generator_for :type, :method => 'Subversion'
  generator_for :url, :method => :next_url

  def self.next_url
    @last_url ||= 'file:///test/svn'
    @last_url.succ!
    @last_url
  end

end