checkthelist 0.0.0 → 0.0.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.
- data/lib/checklist/list.rb +1 -1
- data/spec/checklist_spec.rb +3 -3
- metadata +1 -1
data/lib/checklist/list.rb
CHANGED
data/spec/checklist_spec.rb
CHANGED
@@ -19,10 +19,10 @@ class TestingChecklist
|
|
19
19
|
end
|
20
20
|
|
21
21
|
checklist do
|
22
|
-
|
22
|
+
check "World should contains the world string" do
|
23
23
|
world == "World"
|
24
24
|
end
|
25
|
-
|
25
|
+
check "the truth" do
|
26
26
|
@true == true
|
27
27
|
end
|
28
28
|
end
|
@@ -39,7 +39,7 @@ class TestingChecklist2
|
|
39
39
|
end
|
40
40
|
|
41
41
|
checklist do
|
42
|
-
|
42
|
+
check "World should contains the world string" do
|
43
43
|
world == "Monde"
|
44
44
|
end
|
45
45
|
end
|