defmastership-core 1.4.0 → 1.4.1
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07bc53590b73e2833caaecb1bae8cfecd87a1ecef94fbe7ecb9b5eb6ea89d828
|
4
|
+
data.tar.gz: adf941d0a7655906428a6b0841780bae626e222284a192cae4e2c7af6dd25dec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21867b6159f14e934248174adff6d253b36f55d19f50528e3ccd0fda55afa2bb391a27a339d0b3b9d9e92b0c4fe427e512a0cc666e895e1089e289678f8b52cb
|
7
|
+
data.tar.gz: a5efb633dd49c4cc0593cb9a1e8e1d2177b45680e78c89f457f55efd62b0156de913db8ff7bd07e710a35dc41226ac9604584008f113224cc68d0051285dee35
|
@@ -141,7 +141,7 @@ RSpec.describe(Defmastership::Core::DMRegexp) do
|
|
141
141
|
it { expect(regexp.match(' ,[ label1 , label2 ] ]')[:summary]).to(be_nil) }
|
142
142
|
it { expect(regexp.match(', a summary ]')[:summary]).to(eq('a summary')) }
|
143
143
|
it { expect(regexp.match(', a summary ]')[:labels]).to(be_nil) }
|
144
|
-
it { expect(regexp.match(', "a,
|
144
|
+
it { expect(regexp.match(', " a, comma " ]')[:summary]).to(eq('a, comma')) }
|
145
145
|
end
|
146
146
|
|
147
147
|
context 'when invalid definitions end' do
|
@@ -233,7 +233,7 @@ RSpec.describe(Defmastership::Core::DMRegexp) do
|
|
233
233
|
|
234
234
|
it { expect(regexp.match('')[:summary]).to(be_nil) }
|
235
235
|
it { expect(regexp.match(', bla: bla bli ')[:summary]).to(eq('bla: bla bli')) }
|
236
|
-
it { expect(regexp.match(', " bla bla , bli "')[:summary]).to(eq('
|
236
|
+
it { expect(regexp.match(', " bla bla , bli "')[:summary]).to(eq('bla bla , bli')) }
|
237
237
|
end
|
238
238
|
|
239
239
|
context 'with invalid definition summary' do
|
@@ -298,7 +298,7 @@ RSpec.describe(Defmastership::Core::DMRegexp) do
|
|
298
298
|
it { expect(one_match[:summary]).to(eq('a summary')) }
|
299
299
|
it { expect(one_match[:labels]).to(eq('a,b')) }
|
300
300
|
|
301
|
-
it { expect(regexp.match('[define,t,R," a , comma "]')[:summary]).to(eq('
|
301
|
+
it { expect(regexp.match('[define,t,R," a , comma "]')[:summary]).to(eq('a , comma')) }
|
302
302
|
end
|
303
303
|
|
304
304
|
context 'with invalid definition lines' do
|