luna-rspec-formatters 3.13.0 → 3.14.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9da1ca0e746deb01ba1fb8b585deed27e40ab1e1143d5c6825f292e0ea97202
|
4
|
+
data.tar.gz: bfcc860d34b4f24b81675677342e09a2844328fb5a9399691680972394033768
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 348321dedf85f1f3807ea975b4acbeedc66efd1bc92091dd27fa393ce6f30e41e8284b06b41e22f653dfd5a5b3cad79beca78a700e635dafe21071cff2b7f5f7
|
7
|
+
data.tar.gz: facb6786aad73916d39bca815cce629795244064f5b9fcd93c3f1ff6878912908435356b7eaa3ed4887d2039945fd2dc0d0921e0a918c396a0debfe19d290871
|
@@ -16,8 +16,9 @@ module Luna
|
|
16
16
|
# --
|
17
17
|
def example_passed(_)
|
18
18
|
newline_or_addup
|
19
|
-
output.print " ",
|
20
|
-
|
19
|
+
output.print " ", success_color(
|
20
|
+
"\u2714"
|
21
|
+
)
|
21
22
|
end
|
22
23
|
|
23
24
|
# --
|
@@ -25,8 +26,9 @@ module Luna
|
|
25
26
|
# --
|
26
27
|
def example_failed(_)
|
27
28
|
newline_or_addup
|
28
|
-
output.print " ",
|
29
|
-
|
29
|
+
output.print " ", failure_color(
|
30
|
+
"\u2718"
|
31
|
+
)
|
30
32
|
end
|
31
33
|
|
32
34
|
# --
|
@@ -34,8 +36,9 @@ module Luna
|
|
34
36
|
# --
|
35
37
|
def example_pending(_)
|
36
38
|
newline_or_addup
|
37
|
-
output.print " ",
|
38
|
-
|
39
|
+
output.print " ", pending_color(
|
40
|
+
"\u203D"
|
41
|
+
)
|
39
42
|
end
|
40
43
|
end
|
41
44
|
end
|