Sha256: db29b2330c268bad65929afa25782adbde6b206146c8a3ee10c12174f7cf49cf

Contents?: true

Size: 948 Bytes

Versions: 87

Compression:

Stored size: 948 Bytes

Contents

use "ponytest"

actor Main is TestList
  new create(env: Env) =>
    PonyTest(env, this)

  fun tag tests(test: PonyTest) =>
    test(_TestRomanNumerals)

class iso _TestRomanNumerals is UnitTest
  fun name(): String => "roman-numerals/RomanNumerals"

  fun apply(h: TestHelper) =>
    let tests: Array[(USize, String)] = [
      (0, ""),
      (1, "I"),
      (2, "II"),
      (3, "III"),
      (4, "IV"),
      (5, "V"),
      (6, "VI"),
      (9, "IX"),
      (27, "XXVII"),
      (48, "XLVIII"),
      (59, "LIX"),
      (93, "XCIII"),
      (141, "CXLI"),
      (163, "CLXIII"),
      (402, "CDII"),
      (575, "DLXXV"),
      (911, "CMXI"),
      (1024, "MXXIV"),
      (3000, "MMM")
    ]

    for test in tests.values() do
      try
        h.assert_eq[String](RomanNumerals(test._1), test._2)
      else
        h.fail()
      end
    end

    h.assert_error({() ? => RomanNumerals(-1)})
    h.assert_error({() ? => RomanNumerals(4000)})

Version data entries

87 entries across 87 versions & 1 rubygems

Version Path
trackler-2.0.8.54 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.53 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.52 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.51 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.50 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.49 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.48 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.47 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.46 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.45 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.44 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.43 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.42 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.41 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.40 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.39 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.38 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.37 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.36 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.0.8.35 tracks/pony/exercises/roman-numerals/test.pony