Class: Dfect::Suite

Inherits:
Object show all
Defined in:
lib/dfect.rb

Overview

:stopdoc:

Defined Under Namespace

Classes: Test

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeSuite

Returns a new instance of Suite.



888
889
890
891
892
893
894
# File 'lib/dfect.rb', line 888

def initialize
  @tests       = []
  @before_each = []
  @after_each  = []
  @before_all  = []
  @after_all   = []
end

Instance Attribute Details

#after_allObject (readonly)

Returns the value of attribute after_all.



886
887
888
# File 'lib/dfect.rb', line 886

def after_all
  @after_all
end

#after_eachObject (readonly)

Returns the value of attribute after_each.



886
887
888
# File 'lib/dfect.rb', line 886

def after_each
  @after_each
end

#before_allObject (readonly)

Returns the value of attribute before_all.



886
887
888
# File 'lib/dfect.rb', line 886

def before_all
  @before_all
end

#before_eachObject (readonly)

Returns the value of attribute before_each.



886
887
888
# File 'lib/dfect.rb', line 886

def before_each
  @before_each
end

#testsObject (readonly)

Returns the value of attribute tests.



886
887
888
# File 'lib/dfect.rb', line 886

def tests
  @tests
end