sixarm_ruby_math_statistics 1.2.4 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/test/sixarm_ruby_math_statistics_test/enumerable_test.rb +4 -4
- metadata +1 -1
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa8dcd6beed87630eaa9cc2bd4203bc4af60f643
|
4
|
+
data.tar.gz: e1570cdf765396a37c37ee42d2737f055956741c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bcd6712c8fcf3288cb3abcaa6069995eb71a699e55b3144ed99a5b2a9cf69a17038f4623963eb47158dfa9d523acf4f7ac1b79c0b91f363bad83cbe725818ba3
|
7
|
+
data.tar.gz: 146d1042a38626900057e988b97c530c34cb2b067cc8f653ccbdf59219753d5e346137f68847afad613bc22a9a8182e08384891694c5d2083c5a780f17d0de2a
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
@@ -26,7 +26,7 @@ describe Enumerable do
|
|
26
26
|
describe "#mean" do
|
27
27
|
|
28
28
|
it "[] => nil, which tests edge case" do
|
29
|
-
[].mean.
|
29
|
+
[].mean.must_be_nil
|
30
30
|
end
|
31
31
|
|
32
32
|
it "[1] => 1.0, which tests minimal case" do
|
@@ -46,7 +46,7 @@ describe Enumerable do
|
|
46
46
|
describe "#median" do
|
47
47
|
|
48
48
|
it "[] => nil, which tests edge case" do
|
49
|
-
[].median.
|
49
|
+
[].median.must_be_nil
|
50
50
|
end
|
51
51
|
|
52
52
|
it "[1] => 1.0, which tests minimal case" do
|
@@ -86,7 +86,7 @@ describe Enumerable do
|
|
86
86
|
describe "#variance" do
|
87
87
|
|
88
88
|
it "[] => nil, which tests edge case" do
|
89
|
-
[].variance.
|
89
|
+
[].variance.must_be_nil
|
90
90
|
end
|
91
91
|
|
92
92
|
it "[1] => 0, which tests minimal case" do
|
@@ -106,7 +106,7 @@ describe Enumerable do
|
|
106
106
|
describe "#deviation" do
|
107
107
|
|
108
108
|
it "[] => nil, which tests edge case" do
|
109
|
-
[].deviation.
|
109
|
+
[].deviation.must_be_nil
|
110
110
|
end
|
111
111
|
|
112
112
|
it "[1] => 0, which tests minimal case" do
|
metadata
CHANGED
metadata.gz.sig
CHANGED
Binary file
|