runeblog 0.1.40 → 0.1.41
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/runeblog_version.rb +1 -1
- data/test/general_test.rb +4 -3
- data/test/make_blog.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a3e0882116e3be741676540c9a99ee9b921cb110b866dbcc98ab2f80c0a7bd8b
|
4
|
+
data.tar.gz: 406c183d31d420790bef5f604050a5f67cc8038eaa69a1baa57a46b9b9660898
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d20f0b37cda67ec77ced39c21577c057278a7e0e768eb6411b8e08bfddff267502e5b9e1c5909dfe87482ab81b2f3c45dbbf5a69fbb0a8b77aa83bdde307b97b
|
7
|
+
data.tar.gz: 156f6d9e380b891300a044e38c70910645d2579e58e0330d12c20fa067ec6226a14a048a720ab0b03d5d17904c6a0459998eb92aa54ad649c73df7c184ea5ab2
|
data/lib/runeblog_version.rb
CHANGED
data/test/general_test.rb
CHANGED
@@ -70,8 +70,9 @@ class TestREPL < Minitest::Test
|
|
70
70
|
# puts __method__
|
71
71
|
out = cmd_list_drafts(nil, true)
|
72
72
|
assert out.is_a?(String), "Expected a string returned"
|
73
|
-
|
74
|
-
|
73
|
+
nlines = out.split("\n").length
|
74
|
+
exp = 10
|
75
|
+
assert nlines == exp, "Expecting #{exp} lines, got #{nlines}; #{show_lines(out)}"
|
75
76
|
end
|
76
77
|
|
77
78
|
def test_006_lsp!
|
@@ -79,7 +80,7 @@ class TestREPL < Minitest::Test
|
|
79
80
|
out = cmd_list_posts(nil, true)
|
80
81
|
assert out.is_a?(String), "Expected a string returned; got: #{out.inspect}"
|
81
82
|
lines = out.split("\n").length
|
82
|
-
assert lines == 6, "Expecting 6 lines; got #{show_lines(out)}"
|
83
|
+
assert lines == 6, "Expecting 6 lines; got #{lines.size}; #{show_lines(out)}"
|
83
84
|
end
|
84
85
|
|
85
86
|
def test_007_parser
|
data/test/make_blog.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: runeblog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.41
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hal Fulton
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-03-
|
11
|
+
date: 2019-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: livetext
|