word_count_analyzer 0.0.8 → 0.0.9
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87bec846bdd02ab33c2547dab4bebd08ac58a702
|
4
|
+
data.tar.gz: c59562499109dc6bfd1427d67e293bfa34a09c5e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 019f11f42cfa49c56bf723513f90f4ea8905e2fa540c7652b72ed4d512ed4e21e6ba7e6d7ca66e82c72fe75e604266bfd2999187d2cedb2fb56db463df5d46a5
|
7
|
+
data.tar.gz: 7a8cc1ef740fc06e6474d4218fcca4533050e0fd9e74545cb158db4f2cc9918851c4eecde0d9c1c389943d2f17fb61bad6b2efecb3e0823c4921a1111a59d5ea
|
@@ -587,6 +587,12 @@ RSpec.describe WordCountAnalyzer::Counter do
|
|
587
587
|
ws = WordCountAnalyzer::Counter.new(text: text)
|
588
588
|
expect(ws.pages_count).to eq(79)
|
589
589
|
end
|
590
|
+
|
591
|
+
it 'reverse engineers Pages word count #003' do
|
592
|
+
text = "..."
|
593
|
+
ws = WordCountAnalyzer::Counter.new(text: text)
|
594
|
+
expect(ws.pages_count).to eq(0)
|
595
|
+
end
|
590
596
|
end
|
591
597
|
|
592
598
|
context 'Microsoft Word Count' do
|