Module: RBS::UnitTest::TypeAssertions::_BaseAssertions
- Defined in:
- sig/unit_test/type_assertions.rbs
Instance Method Summary collapse
- #assert ⇒ void
- #assert_empty ⇒ void
- #assert_operator ⇒ void
- #assert_predicate ⇒ void
- #notify ⇒ void
- #refute ⇒ void
- #refute_predicate ⇒ void
Instance Method Details
#assert ⇒ void
This method returns an undefined value.
33 |
# File 'sig/unit_test/type_assertions.rbs', line 33
def assert: (untyped, ?String?) -> void
|
#assert_empty ⇒ void
This method returns an undefined value.
37 |
# File 'sig/unit_test/type_assertions.rbs', line 37
def assert_empty: (untyped, ?String?) -> void
|
#assert_operator ⇒ void
This method returns an undefined value.
39 |
# File 'sig/unit_test/type_assertions.rbs', line 39
def assert_operator: (untyped, Symbol, *untyped) -> void
|
#assert_predicate ⇒ void
This method returns an undefined value.
43 |
# File 'sig/unit_test/type_assertions.rbs', line 43
def assert_predicate: (untyped, Symbol, ?String?) -> void
|
#notify ⇒ void
This method returns an undefined value.
41 |
# File 'sig/unit_test/type_assertions.rbs', line 41
def notify: (untyped) -> void
|
#refute ⇒ void
This method returns an undefined value.
35 |
# File 'sig/unit_test/type_assertions.rbs', line 35
def refute: (untyped, ?String?) -> void
|
#refute_predicate ⇒ void
This method returns an undefined value.
45 |
# File 'sig/unit_test/type_assertions.rbs', line 45
def refute_predicate: (untyped, Symbol, ?String?) -> void
|