xqsr3 0.38.1.1 → 0.39.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +15 -6
  3. data/examples/count_word_frequencies.md +13 -13
  4. data/examples/count_word_frequencies.rb +5 -5
  5. data/lib/xqsr3/array_utilities/join_with_or.rb +53 -54
  6. data/lib/xqsr3/array_utilities.rb +2 -2
  7. data/lib/xqsr3/command_line_utilities/map_option_string.rb +66 -67
  8. data/lib/xqsr3/command_line_utilities.rb +2 -2
  9. data/lib/xqsr3/containers/frequency_map.rb +405 -404
  10. data/lib/xqsr3/containers/multi_map.rb +454 -453
  11. data/lib/xqsr3/containers.rb +3 -3
  12. data/lib/xqsr3/conversion/bool_parser.rb +56 -57
  13. data/lib/xqsr3/conversion/integer_parser.rb +92 -93
  14. data/lib/xqsr3/conversion.rb +3 -3
  15. data/lib/xqsr3/diagnostics/exception_utilities.rb +152 -151
  16. data/lib/xqsr3/diagnostics/exceptions/with_cause.rb +99 -95
  17. data/lib/xqsr3/diagnostics/inspect_builder.rb +86 -86
  18. data/lib/xqsr3/diagnostics.rb +3 -3
  19. data/lib/xqsr3/doc_.rb +136 -136
  20. data/lib/xqsr3/extensions/array/join_with_or.rb +9 -9
  21. data/lib/xqsr3/extensions/enumerable/collect_with_index.rb +18 -17
  22. data/lib/xqsr3/extensions/enumerable/detect_map.rb +41 -41
  23. data/lib/xqsr3/extensions/enumerable/unique.rb +32 -31
  24. data/lib/xqsr3/extensions/hash/deep_transform.rb +1 -1
  25. data/lib/xqsr3/extensions/hash/except.rb +16 -16
  26. data/lib/xqsr3/extensions/hash/has_match.rb +10 -10
  27. data/lib/xqsr3/extensions/hash/match.rb +10 -10
  28. data/lib/xqsr3/extensions/hash/slice.rb +11 -11
  29. data/lib/xqsr3/extensions/hash.rb +1 -1
  30. data/lib/xqsr3/extensions/integer/to_s_grp.rb +118 -0
  31. data/lib/xqsr3/extensions/integer.rb +3 -0
  32. data/lib/xqsr3/extensions/io/writelines.rb +34 -34
  33. data/lib/xqsr3/extensions/kernel/integer.rb +26 -26
  34. data/lib/xqsr3/extensions/kernel/raise_with_options.rb +15 -14
  35. data/lib/xqsr3/extensions/kernel.rb +1 -0
  36. data/lib/xqsr3/extensions/string/ends_with.rb +1 -1
  37. data/lib/xqsr3/extensions/string/map_option_string.rb +4 -5
  38. data/lib/xqsr3/extensions/string/nil_if_empty.rb +1 -1
  39. data/lib/xqsr3/extensions/string/nil_if_whitespace.rb +1 -1
  40. data/lib/xqsr3/extensions/string/quote_if.rb +1 -2
  41. data/lib/xqsr3/extensions/string/starts_with.rb +1 -1
  42. data/lib/xqsr3/extensions/string/to_bool.rb +8 -9
  43. data/lib/xqsr3/extensions/string/to_symbol.rb +1 -1
  44. data/lib/xqsr3/extensions/string/truncate.rb +1 -2
  45. data/lib/xqsr3/extensions/test/unit/assert_eql.rb +7 -7
  46. data/lib/xqsr3/extensions/test/unit/assert_false.rb +6 -7
  47. data/lib/xqsr3/extensions/test/unit/assert_not.rb +6 -7
  48. data/lib/xqsr3/extensions/test/unit/assert_not_eql.rb +7 -7
  49. data/lib/xqsr3/extensions/test/unit/assert_raise_with_message.rb +61 -62
  50. data/lib/xqsr3/extensions/test/unit/assert_subclass_of.rb +7 -8
  51. data/lib/xqsr3/extensions/test/unit/assert_superclass_of.rb +7 -8
  52. data/lib/xqsr3/extensions/test/unit/assert_true.rb +6 -7
  53. data/lib/xqsr3/extensions/test/unit/assert_type_has_instance_methods.rb +36 -38
  54. data/lib/xqsr3/extensions.rb +5 -5
  55. data/lib/xqsr3/hash_utilities/deep_transform.rb +71 -71
  56. data/lib/xqsr3/hash_utilities/key_matching.rb +82 -82
  57. data/lib/xqsr3/hash_utilities.rb +3 -3
  58. data/lib/xqsr3/internal_/test_unit_version_.rb +130 -88
  59. data/lib/xqsr3/io/writelines.rb +125 -125
  60. data/lib/xqsr3/quality/parameter_checking.rb +452 -453
  61. data/lib/xqsr3/quality.rb +2 -2
  62. data/lib/xqsr3/string_utilities/ends_with.rb +64 -64
  63. data/lib/xqsr3/string_utilities/nil_if_empty.rb +33 -34
  64. data/lib/xqsr3/string_utilities/nil_if_whitespace.rb +35 -35
  65. data/lib/xqsr3/string_utilities/quote_if.rb +55 -56
  66. data/lib/xqsr3/string_utilities/starts_with.rb +64 -64
  67. data/lib/xqsr3/string_utilities/to_symbol.rb +80 -80
  68. data/lib/xqsr3/string_utilities/truncate.rb +60 -61
  69. data/lib/xqsr3/string_utilities.rb +8 -8
  70. data/lib/xqsr3/version.rb +19 -20
  71. data/test/performance/frequency_map.rb +13 -27
  72. data/test/scratch/test_assert_raise_with_message.rb +12 -13
  73. data/test/unit/array_utilities/tc_join_with_or.rb +140 -142
  74. data/test/unit/command_line_utilities/tc_map_option_string.rb +18 -18
  75. data/test/unit/containers/tc_frequency_map.rb +607 -554
  76. data/test/unit/containers/tc_multi_map.rb +573 -522
  77. data/test/unit/conversion/tc_integer_parser.rb +73 -73
  78. data/test/unit/conversion/tc_to_bool.rb +26 -26
  79. data/test/unit/diagnostics/exceptions/tc_with_cause.rb +165 -165
  80. data/test/unit/diagnostics/tc_exception_utilities.rb +156 -156
  81. data/test/unit/extensions/enumerable/tc_collect_with_index.rb +14 -14
  82. data/test/unit/extensions/enumerable/tc_detect_map.rb +20 -20
  83. data/test/unit/extensions/enumerable/tc_unique.rb +34 -34
  84. data/test/unit/extensions/hash/tc_deep_transform.rb +22 -22
  85. data/test/unit/extensions/hash/tc_except.rb +28 -28
  86. data/test/unit/extensions/hash/tc_hash.rb +1 -1
  87. data/test/unit/extensions/hash/tc_slice.rb +14 -14
  88. data/test/unit/extensions/integer/tc_to_s_grp.rb +60 -0
  89. data/test/unit/extensions/integer/ts_all.rb +12 -0
  90. data/test/unit/extensions/io/tc_writelines.rb +77 -77
  91. data/test/unit/extensions/kernel/tc_integer.rb +75 -75
  92. data/test/unit/extensions/kernel/tc_raise_with_options.rb +155 -155
  93. data/test/unit/extensions/object/tc_inspect.rb +51 -51
  94. data/test/unit/extensions/string/tc_bool.tb +24 -24
  95. data/test/unit/extensions/string/tc_ends_with.rb +53 -53
  96. data/test/unit/extensions/string/tc_map_option_string.rb +15 -15
  97. data/test/unit/extensions/string/tc_nil_if_empty.rb +8 -8
  98. data/test/unit/extensions/string/tc_nil_if_whitespace.rb +8 -8
  99. data/test/unit/extensions/string/tc_quote_if.rb +18 -18
  100. data/test/unit/extensions/string/tc_starts_with.rb +53 -53
  101. data/test/unit/extensions/string/tc_to_symbol.rb +26 -26
  102. data/test/unit/extensions/string/tc_truncate.rb +18 -18
  103. data/test/unit/extensions/test/unit/tc_assert_raise_with_message.rb +16 -16
  104. data/test/unit/extensions/test/unit/tc_assert_subclass_of.rb +9 -9
  105. data/test/unit/extensions/test/unit/tc_assert_superclass_of.rb +9 -9
  106. data/test/unit/hash_utilities/tc_has_match.rb +70 -70
  107. data/test/unit/hash_utilities/tc_match.rb +83 -83
  108. data/test/unit/io/tc_writelines.rb +106 -108
  109. data/test/unit/quality/tc_parameter_checking.rb +390 -390
  110. data/test/unit/string_utilities/tc_truncate.rb +28 -28
  111. data/test/unit/tc_version.rb +15 -15
  112. metadata +6 -2
@@ -1,16 +1,17 @@
1
1
 
2
2
  # ######################################################################## #
3
- # File: lib/xqsr3/extensions/kernel/integer.rb
3
+ # File: lib/xqsr3/extensions/kernel/integer.rb
4
4
  #
5
- # Purpose: Adds a Integer 'overload' to the Kernel module
5
+ # Purpose: Adds a Integer 'overload' to the Kernel module
6
6
  #
7
- # Created: 21st November 2017
8
- # Updated: 12th April 2019
7
+ # Created: 21st November 2017
8
+ # Updated: 29th March 2024
9
9
  #
10
- # Home: http://github.com/synesissoftware/xqsr3
10
+ # Home: http://github.com/synesissoftware/xqsr3
11
11
  #
12
- # Author: Matthew Wilson
12
+ # Author: Matthew Wilson
13
13
  #
14
+ # Copyright (c) 2019-2024, Matthew Wilson and Synesis Information Systems
14
15
  # Copyright (c) 2017-2019, Matthew Wilson and Synesis Software
15
16
  # All rights reserved.
16
17
  #
@@ -25,7 +26,7 @@
25
26
  # notice, this list of conditions and the following disclaimer in the
26
27
  # documentation and/or other materials provided with the distribution.
27
28
  #
28
- # * Neither the names of the copyright holder nor the names of its
29
+ # * Neither the names of the copyright holders nor the names of its
29
30
  # contributors may be used to endorse or promote products derived from
30
31
  # this software without specific prior written permission.
31
32
  #
@@ -54,29 +55,28 @@ require 'xqsr3/conversion/integer_parser'
54
55
 
55
56
  module Kernel
56
57
 
57
- alias xqsr3_Integer_original_method Integer
58
+ alias xqsr3_Integer_original_method Integer
58
59
 
59
- # A monkey-patch extension of +Kernel#Integer+ with +options+
60
- #
61
- # === Signature
62
- #
63
- # * *Parameters:*
64
- # - +arg+ The argument to be converted (to +Fixnum+ or +Bignum+)
65
- # - +base+ A value of 0, or between 2 and 36. Defaults to 0
66
- # - +options+ An options hash, containing any of the following options
67
- # - +block+ An optional caller-supplied block that will be invoked with the +ArgumentError+ exception, allowing the caller to take additional action. If the block returns then its return value will be returned to the caller
68
- #
69
- # * *Options:*
70
- # - +:default+ A default value to be used when +arg+ is +nil+ or cannot be converted by (the original) +Kernel#Integer+
71
- # - +:nil+ Returns +nil+ if +arg+ is +nil+ or cannot be converted by (the original) +Kernel#Integer+. Ignored if +:default+ is specified
72
- def Integer(arg, base = 0, **options, &block)
60
+ # A monkey-patch extension of +Kernel#Integer+ with +options+
61
+ #
62
+ # === Signature
63
+ #
64
+ # * *Parameters:*
65
+ # - +arg+ The argument to be converted (to +Fixnum+ or +Bignum+)
66
+ # - +base+ A value of 0, or between 2 and 36. Defaults to 0
67
+ # - +options+ An options hash, containing any of the following options
68
+ # - +block+ An optional caller-supplied block that will be invoked with the +ArgumentError+ exception, allowing the caller to take additional action. If the block returns then its return value will be returned to the caller
69
+ #
70
+ # * *Options:*
71
+ # - +:default+ A default value to be used when +arg+ is +nil+ or cannot be converted by (the original) +Kernel#Integer+
72
+ # - +:nil+ Returns +nil+ if +arg+ is +nil+ or cannot be converted by (the original) +Kernel#Integer+. Ignored if +:default+ is specified
73
+ def Integer(arg, base = 0, **options, &block)
73
74
 
74
- ::Xqsr3::Conversion::IntegerParser.to_integer arg, base = 0, **options, &block
75
- end
75
+ ::Xqsr3::Conversion::IntegerParser.to_integer arg, base = 0, **options, &block
76
+ end
76
77
 
77
- private :xqsr3_Integer_original_method
78
+ private :xqsr3_Integer_original_method
78
79
  end # module Kernel
79
80
 
80
81
  # ############################## end of file ############################# #
81
82
 
82
-
@@ -1,17 +1,18 @@
1
1
 
2
2
  # ######################################################################## #
3
- # File: lib/xqsr3/extensions/kernel/raise_with_options.rb
3
+ # File: lib/xqsr3/extensions/kernel/raise_with_options.rb
4
4
  #
5
- # Purpose: Adds a raise_with_options() method to the Kernel module
5
+ # Purpose: Adds a raise_with_options() method to the Kernel module
6
6
  #
7
- # Created: 12th February 2015
8
- # Updated: 22nd June 2017
7
+ # Created: 12th February 2015
8
+ # Updated: 29th March 2024
9
9
  #
10
- # Home: http://github.com/synesissoftware/xqsr3
10
+ # Home: http://github.com/synesissoftware/xqsr3
11
11
  #
12
- # Author: Matthew Wilson
12
+ # Author: Matthew Wilson
13
13
  #
14
- # Copyright (c) 2015-2017, Matthew Wilson and Synesis Software
14
+ # Copyright (c) 2019-2024, Matthew Wilson and Synesis Information Systems
15
+ # Copyright (c) 2015-2019, Matthew Wilson and Synesis Software
15
16
  # All rights reserved.
16
17
  #
17
18
  # Redistribution and use in source and binary forms, with or without
@@ -25,7 +26,7 @@
25
26
  # notice, this list of conditions and the following disclaimer in the
26
27
  # documentation and/or other materials provided with the distribution.
27
28
  #
28
- # * Neither the names of the copyright holder nor the names of its
29
+ # * Neither the names of the copyright holders nor the names of its
29
30
  # contributors may be used to endorse or promote products derived from
30
31
  # this software without specific prior written permission.
31
32
  #
@@ -54,14 +55,14 @@ require 'xqsr3/diagnostics/exception_utilities'
54
55
 
55
56
  module Kernel
56
57
 
57
- # Extends +Kernel+ module with the ::Xqsr3::Diagnostics::ExceptionUtilities::raise_with_options
58
- # method
59
- def raise_with_options *args, **options
58
+ # Extends +Kernel+ module with the ::Xqsr3::Diagnostics::ExceptionUtilities::raise_with_options
59
+ # method
60
+ def raise_with_options *args, **options
60
61
 
61
- options ||= {}
62
+ options ||= {}
62
63
 
63
- ::Xqsr3::Diagnostics::ExceptionUtilities.raise_with_options(*args, **(options.merge({ :called_indirectly_06d353cb_5a6c_47ca_8dbe_ff76359c7e96 => 1})))
64
- end
64
+ ::Xqsr3::Diagnostics::ExceptionUtilities.raise_with_options(*args, **(options.merge({ :called_indirectly_06d353cb_5a6c_47ca_8dbe_ff76359c7e96 => 1})))
65
+ end
65
66
  end # module Kernel
66
67
 
67
68
  # ############################## end of file ############################# #
@@ -1,3 +1,4 @@
1
1
 
2
+ require 'xqsr3/extensions/kernel/integer'
2
3
  require 'xqsr3/extensions/kernel/raise_with_options'
3
4
 
@@ -3,6 +3,6 @@ require 'xqsr3/string_utilities/ends_with'
3
3
 
4
4
  class String
5
5
 
6
- include ::Xqsr3::StringUtilities::EndsWith
6
+ include ::Xqsr3::StringUtilities::EndsWith
7
7
  end # class String
8
8
 
@@ -3,15 +3,14 @@ require 'xqsr3/command_line_utilities/map_option_string'
3
3
 
4
4
  class String
5
5
 
6
- include ::Xqsr3::CommandLineUtilities::MapOptionString
6
+ include ::Xqsr3::CommandLineUtilities::MapOptionString
7
7
  end # class String
8
8
 
9
9
  class NilClass
10
10
 
11
- def map_option_string *args
11
+ def map_option_string *args
12
12
 
13
- nil
14
- end
13
+ nil
14
+ end
15
15
  end
16
16
 
17
-
@@ -3,6 +3,6 @@ require 'xqsr3/string_utilities/nil_if_empty'
3
3
 
4
4
  class String
5
5
 
6
- include ::Xqsr3::StringUtilities::NilIfEmpty
6
+ include ::Xqsr3::StringUtilities::NilIfEmpty
7
7
  end # class String
8
8
 
@@ -3,6 +3,6 @@ require 'xqsr3/string_utilities/nil_if_whitespace'
3
3
 
4
4
  class String
5
5
 
6
- include ::Xqsr3::StringUtilities::NilIfWhitespace
6
+ include ::Xqsr3::StringUtilities::NilIfWhitespace
7
7
  end # class String
8
8
 
@@ -3,7 +3,6 @@ require 'xqsr3/string_utilities/quote_if'
3
3
 
4
4
  class String
5
5
 
6
- include ::Xqsr3::StringUtilities::QuoteIf
6
+ include ::Xqsr3::StringUtilities::QuoteIf
7
7
  end # class String
8
8
 
9
-
@@ -3,6 +3,6 @@ require 'xqsr3/string_utilities/starts_with'
3
3
 
4
4
  class String
5
5
 
6
- include ::Xqsr3::StringUtilities::StartsWith
6
+ include ::Xqsr3::StringUtilities::StartsWith
7
7
  end # class String
8
8
 
@@ -3,14 +3,13 @@ require 'xqsr3/conversion/bool_parser'
3
3
 
4
4
  class String
5
5
 
6
- # Attempts to convert instance to a Boolean value, based on the given
7
- # +options+
8
- #
9
- # See Xqsr3::Conversion::BoolParser
10
- def to_bool **options
11
-
12
- return ::Xqsr3::Conversion::BoolParser.to_bool self, **options
13
- end
6
+ # Attempts to convert instance to a Boolean value, based on the given
7
+ # +options+
8
+ #
9
+ # See Xqsr3::Conversion::BoolParser
10
+ def to_bool **options
11
+
12
+ return ::Xqsr3::Conversion::BoolParser.to_bool self, **options
13
+ end
14
14
  end # class String
15
15
 
16
-
@@ -3,6 +3,6 @@ require 'xqsr3/string_utilities/to_symbol'
3
3
 
4
4
  class String
5
5
 
6
- include ::Xqsr3::StringUtilities::ToSymbol
6
+ include ::Xqsr3::StringUtilities::ToSymbol
7
7
  end # class String
8
8
 
@@ -3,7 +3,6 @@ require 'xqsr3/string_utilities/truncate'
3
3
 
4
4
  class String
5
5
 
6
- include ::Xqsr3::StringUtilities::Truncate
6
+ include ::Xqsr3::StringUtilities::Truncate
7
7
  end # class String
8
8
 
9
-
@@ -4,17 +4,17 @@ module Unit
4
4
 
5
5
  module Assertions
6
6
 
7
- unless respond_to? :assert_eql
7
+ unless respond_to? :assert_eql
8
8
 
9
- # Assert that +expected+ and +actual+ have the same hash key
10
- def assert_eql(expected, actual, failure_message = '')
9
+ # Assert that +expected+ and +actual+ have the same hash key, as
10
+ # evaluated by the instance method +eq?+
11
+ def assert_eql(expected, actual, failure_message = '')
11
12
 
12
- assert expected.eql?(actual), failure_message
13
- end
14
- end
13
+ assert expected.eql?(actual), failure_message
14
+ end
15
+ end
15
16
 
16
17
  end # class Assertions
17
18
  end # module Unit
18
19
  end # module Test
19
20
 
20
-
@@ -4,17 +4,16 @@ module Unit
4
4
 
5
5
  module Assertions
6
6
 
7
- unless respond_to? :assert_false
7
+ unless respond_to? :assert_false
8
8
 
9
- # Assert that +expression+ is +false+
10
- def assert_false(expression, failure_message = '')
9
+ # Assert that +expression+ is +false+ (and not merely _falsey_)
10
+ def assert_false(expression, failure_message = '')
11
11
 
12
- assert ::FalseClass === (expression), failure_message
13
- end
14
- end
12
+ assert ::FalseClass === (expression), failure_message
13
+ end
14
+ end
15
15
 
16
16
  end # class Assertions
17
17
  end # module Unit
18
18
  end # module Test
19
19
 
20
-
@@ -4,17 +4,16 @@ module Unit
4
4
 
5
5
  module Assertions
6
6
 
7
- unless respond_to? :assert_not
7
+ unless respond_to? :assert_not
8
8
 
9
- # Assert that +expression+ is _falsey_
10
- def assert_not(expression, failure_message = '')
9
+ # Assert that +expression+ is _falsey_
10
+ def assert_not(expression, failure_message = '')
11
11
 
12
- assert !(expression), failure_message
13
- end
14
- end
12
+ assert !(expression), failure_message
13
+ end
14
+ end
15
15
 
16
16
  end # class Assertions
17
17
  end # module Unit
18
18
  end # module Test
19
19
 
20
-
@@ -4,17 +4,17 @@ module Unit
4
4
 
5
5
  module Assertions
6
6
 
7
- unless respond_to? :assert_not_eql
7
+ unless respond_to? :assert_not_eql
8
8
 
9
- # Assert that +expected+ and +actual+ have different hash keys
10
- def assert_not_eql(expected, actual, failure_message = '')
9
+ # Assert that +expected+ and +actual+ have different hash keys, as
10
+ # evaluated by the instance method +eq?+
11
+ def assert_not_eql(expected, actual, failure_message = '')
11
12
 
12
- assert !(expected.eql?(actual)), failure_message
13
- end
14
- end
13
+ assert !(expected.eql?(actual)), failure_message
14
+ end
15
+ end
15
16
 
16
17
  end # class Assertions
17
18
  end # module Unit
18
19
  end # module Test
19
20
 
20
-
@@ -9,13 +9,13 @@ module Internal_ # :nodoc: all
9
9
  # @!visibility private
10
10
  module X_assert_raise_with_message_ # :nodoc: all
11
11
 
12
- if TestUnitVersion_.is_at_least? [ 3, 0, 8 ]
12
+ if TestUnitVersion_.is_at_least? [ 3, 0, 8 ]
13
13
 
14
- AssertionFailedError_ = Test::Unit::AssertionFailedError # :nodoc:
15
- else
14
+ AssertionFailedError_ = Test::Unit::AssertionFailedError # :nodoc:
15
+ else
16
16
 
17
- class AssertionFailedError_ < ArgumentError; end # :nodoc:
18
- end
17
+ class AssertionFailedError_ < ArgumentError; end # :nodoc:
18
+ end
19
19
 
20
20
  end # module X_assert_raise_with_message_
21
21
  end # module Internal_
@@ -28,91 +28,90 @@ module Unit
28
28
 
29
29
  module Assertions
30
30
 
31
- undef :assert_raise_with_message if respond_to? :assert_raise_with_message
31
+ undef :assert_raise_with_message if respond_to? :assert_raise_with_message
32
32
 
33
- # Asserts that the attached block raises an exception of one of the
34
- # exceptions defined by +type_spec+ and/or has a message matching
35
- # +message_spec+
36
- #
37
- # === Signature
38
- #
39
- # * *Parameters:*
40
- # - +type_spec+ (String, Regexp, [String], [Regexp], nil) Specification of type expectation(s)
41
- # - +message_spec+ (String, Regexp, [String], [Regexp], nil) Specification of message expectation(s)
42
- # - +failure_message+ (String, nil) Optional message to be used if the matching fails
43
- #
44
- # * *Block*
45
- # A required block containing code that is expected to raise an exception
46
- def assert_raise_with_message(type_spec, message_spec, failure_message = nil, &block)
33
+ # Asserts that the attached block raises an exception of one of the
34
+ # exceptions defined by +type_spec+ and/or has a message matching
35
+ # +message_spec+
36
+ #
37
+ # === Signature
38
+ #
39
+ # * *Parameters:*
40
+ # - +type_spec+ (String, Regexp, [String], [Regexp], nil) Specification of type expectation(s)
41
+ # - +message_spec+ (String, Regexp, [String], [Regexp], nil) Specification of message expectation(s)
42
+ # - +failure_message+ (String, nil) Optional message to be used if the matching fails
43
+ #
44
+ # * *Block*
45
+ # A required block containing code that is expected to raise an exception
46
+ def assert_raise_with_message(type_spec, message_spec, failure_message = nil, &block)
47
47
 
48
- unless block_given?
48
+ unless block_given?
49
49
 
50
- msg = "WARNING: no block_given to assert_raise_with_message() called from: #{caller[0]}"
50
+ msg = "WARNING: no block_given to assert_raise_with_message() called from: #{caller[0]}"
51
51
 
52
- warn "\n#{msg}"
52
+ warn "\n#{msg}"
53
53
 
54
- assert false, msg
55
- end
54
+ assert false, msg
55
+ end
56
56
 
57
- case type_spec
58
- when ::Array, nil
57
+ case type_spec
58
+ when ::Array, nil
59
59
 
60
- ;
61
- else
60
+ ;
61
+ else
62
62
 
63
- type_spec = [ type_spec ]
64
- end
63
+ type_spec = [ type_spec ]
64
+ end
65
65
 
66
- case message_spec
67
- when ::Array, nil
66
+ case message_spec
67
+ when ::Array, nil
68
68
 
69
- ;
70
- else
69
+ ;
70
+ else
71
71
 
72
- message_spec = [ message_spec ]
73
- end
72
+ message_spec = [ message_spec ]
73
+ end
74
74
 
75
75
 
76
- begin
76
+ begin
77
77
 
78
- yield
78
+ yield
79
79
 
80
- assert false, 'the block did not throw an exception as was expected'
81
- rescue ::Xqsr3::Internal_::X_assert_raise_with_message_::AssertionFailedError_
80
+ assert false, 'the block did not throw an exception as was expected'
81
+ rescue ::Xqsr3::Internal_::X_assert_raise_with_message_::AssertionFailedError_
82
82
 
83
- raise
84
- rescue Exception => x
83
+ raise
84
+ rescue Exception => x
85
85
 
86
- if type_spec
86
+ if type_spec
87
87
 
88
- assert false, "exception (#{x.class}) - message: '#{x.message}' - not of any of required types (#{type_spec.join(', ')}); #{x.class} given" unless type_spec.any? { |c| x.is_a? c}
89
- end
88
+ assert false, "exception (#{x.class}) - message: '#{x.message}' - not of any of required types (#{type_spec.join(', ')}); #{x.class} given" unless type_spec.any? { |c| x.is_a? c}
89
+ end
90
90
 
91
- if message_spec
91
+ if message_spec
92
92
 
93
- assert false, "exception message not of any of required messages; '#{x.message}' given" unless message_spec.any? do |m|
93
+ assert false, "exception message not of any of required messages; '#{x.message}' given" unless message_spec.any? do |m|
94
94
 
95
- case m
96
- when ::Regexp
95
+ case m
96
+ when ::Regexp
97
97
 
98
- x.message =~ m
99
- when ::String
98
+ x.message =~ m
99
+ when ::String
100
100
 
101
- x.message == m
102
- else
101
+ x.message == m
102
+ else
103
103
 
104
- warn "\nunsupported message_spec entry '#{m}' (#{m.class})"
105
- end
106
- end
107
- end
104
+ warn "\nunsupported message_spec entry '#{m}' (#{m.class})"
105
+ end
106
+ end
107
+ end
108
108
 
109
- assert true
110
- end
111
- end
109
+ assert true
110
+ end
111
+ end
112
112
  end # class Assertions
113
113
  end # module Unit
114
114
  end # module Test
115
115
 
116
116
  # ############################## end of file ############################# #
117
117
 
118
-
@@ -4,19 +4,18 @@ module Unit
4
4
 
5
5
  module Assertions
6
6
 
7
- unless respond_to? :assert_subclass_of
7
+ unless respond_to? :assert_subclass_of
8
8
 
9
- # Assert that +tested_class+ is a sub-class of +parent_class+
10
- def assert_subclass_of(parent_class, tested_class, failure_message = nil)
9
+ # Assert that +tested_class+ is a sub-class of +parent_class+
10
+ def assert_subclass_of(parent_class, tested_class, failure_message = nil)
11
11
 
12
- failure_message ||= "#{tested_class} is not a subclass of #{parent_class}"
12
+ failure_message ||= "#{tested_class} is not a subclass of #{parent_class}"
13
13
 
14
- assert(tested_class < parent_class, failure_message)
15
- end
16
- end
14
+ assert(tested_class < parent_class, failure_message)
15
+ end
16
+ end
17
17
 
18
18
  end # class Assertions
19
19
  end # module Unit
20
20
  end # module Test
21
21
 
22
-
@@ -4,19 +4,18 @@ module Unit
4
4
 
5
5
  module Assertions
6
6
 
7
- unless respond_to? :assert_superclass_of
7
+ unless respond_to? :assert_superclass_of
8
8
 
9
- # Assert that +tested_class+ is a super-class of +child_class+
10
- def assert_superclass_of(child_class, tested_class, failure_message = nil)
9
+ # Assert that +tested_class+ is a super-class of +child_class+
10
+ def assert_superclass_of(child_class, tested_class, failure_message = nil)
11
11
 
12
- failure_message ||= "#{tested_class} is not a superclass of #{child_class}"
12
+ failure_message ||= "#{tested_class} is not a superclass of #{child_class}"
13
13
 
14
- assert(child_class < tested_class, failure_message)
15
- end
16
- end
14
+ assert(child_class < tested_class, failure_message)
15
+ end
16
+ end
17
17
 
18
18
  end # class Assertions
19
19
  end # module Unit
20
20
  end # module Test
21
21
 
22
-
@@ -4,17 +4,16 @@ module Unit
4
4
 
5
5
  module Assertions
6
6
 
7
- unless respond_to? :assert_true
7
+ unless respond_to? :assert_true
8
8
 
9
- # Assert that +expression+ is +true+
10
- def assert_true(expression, failure_message = '')
9
+ # Assert that +expression+ is +true+ (and not merely _truey_)
10
+ def assert_true(expression, failure_message = '')
11
11
 
12
- assert ::TrueClass === (expression), failure_message
13
- end
14
- end
12
+ assert ::TrueClass === (expression), failure_message
13
+ end
14
+ end
15
15
 
16
16
  end # class Assertions
17
17
  end # module Unit
18
18
  end # module Test
19
19
 
20
-