Method: Test::Unit::Priority.included

Defined in:
lib/test/unit/priority.rb

.included(base) ⇒ Object



5
6
7
8
9
10
11
12
# File 'lib/test/unit/priority.rb', line 5

def included(base)
  base.extend(ClassMethods)

  base.class_eval do
    setup :priority_setup, :before => :prepend
    teardown :priority_teardown, :after => :append
  end
end