Added missing Enumeration STI exemplars.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3670 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
f23aceba86
commit
6a6f403978
10
test/exemplars/document_category_exemplar.rb
Normal file
10
test/exemplars/document_category_exemplar.rb
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
class DocumentCategory < Enumeration
|
||||||
|
generator_for :name, :method => :next_name
|
||||||
|
generator_for :type => 'DocumentCategory'
|
||||||
|
|
||||||
|
def self.next_name
|
||||||
|
@last_name ||= 'DocumentCategory0'
|
||||||
|
@last_name.succ!
|
||||||
|
@last_name
|
||||||
|
end
|
||||||
|
end
|
10
test/exemplars/issue_priority_exemplar.rb
Normal file
10
test/exemplars/issue_priority_exemplar.rb
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
class IssuePriority < Enumeration
|
||||||
|
generator_for :name, :method => :next_name
|
||||||
|
generator_for :type => 'IssuePriority'
|
||||||
|
|
||||||
|
def self.next_name
|
||||||
|
@last_name ||= 'IssuePriority0'
|
||||||
|
@last_name.succ!
|
||||||
|
@last_name
|
||||||
|
end
|
||||||
|
end
|
Loading…
x
Reference in New Issue
Block a user