hola_fiabane 0.0.2 → 0.0.4
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 +4 -4
- data/lib/hola/translator.rb +2 -0
- data/test/test_hola.rb +6 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e7e8e5bf4c38e3e7bdcf28f346868bc3841d0716
|
|
4
|
+
data.tar.gz: b6ba82c79d8d52d514ab93c75ef76179a3fc8a5d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba53ceb37226b51cb8e982f5724fe01c68c1543c029bf1ece7dbc40f8b1168f3ed66f4dfd65d930e7794eada8858c0b3de25c82d7a64179dd0adc6bd4ff29e3d
|
|
7
|
+
data.tar.gz: 430a73aec17dc95e8385a0d60effdd24d0ed80b7737077e5dcc65411a43b583489edbc27f9131c364dc9ed80e6d6bd17d254ffaff524d1503976ada88519f520
|
data/lib/hola/translator.rb
CHANGED
data/test/test_hola.rb
CHANGED
|
@@ -12,9 +12,14 @@ class HolaTest < Test::Unit::TestCase
|
|
|
12
12
|
Hola.hi("ruby")
|
|
13
13
|
end
|
|
14
14
|
|
|
15
|
-
def
|
|
15
|
+
def test_swahili_hello
|
|
16
16
|
assert_equal "hujambo dunia",
|
|
17
17
|
Hola.hi("swahili")
|
|
18
18
|
end
|
|
19
19
|
|
|
20
|
+
def test_swedishotherprofession_hello
|
|
21
|
+
assert_equal "halla varlden",
|
|
22
|
+
Hola.hi("swedishotherprofession")
|
|
23
|
+
end
|
|
24
|
+
|
|
20
25
|
end
|