Class: Smartest::Suite
- Inherits:
-
Object
- Object
- Smartest::Suite
- Defined in:
- lib/smartest/suite.rb
Instance Attribute Summary collapse
-
#fixture_classes ⇒ Object
readonly
Returns the value of attribute fixture_classes.
-
#matcher_modules ⇒ Object
readonly
Returns the value of attribute matcher_modules.
-
#tests ⇒ Object
readonly
Returns the value of attribute tests.
Instance Method Summary collapse
-
#initialize ⇒ Suite
constructor
A new instance of Suite.
Constructor Details
#initialize ⇒ Suite
Returns a new instance of Suite.
7 8 9 10 11 |
# File 'lib/smartest/suite.rb', line 7 def initialize @tests = TestRegistry.new @fixture_classes = FixtureClassRegistry.new @matcher_modules = MatcherRegistry.new end |
Instance Attribute Details
#fixture_classes ⇒ Object (readonly)
Returns the value of attribute fixture_classes.
5 6 7 |
# File 'lib/smartest/suite.rb', line 5 def fixture_classes @fixture_classes end |
#matcher_modules ⇒ Object (readonly)
Returns the value of attribute matcher_modules.
5 6 7 |
# File 'lib/smartest/suite.rb', line 5 def matcher_modules @matcher_modules end |
#tests ⇒ Object (readonly)
Returns the value of attribute tests.
5 6 7 |
# File 'lib/smartest/suite.rb', line 5 def tests @tests end |