Sha256: 7fbe4acd4b7c3b827b0d095a58e1404200b445220510a5b4bfd9a70b92f0b695

Contents?: true

Size: 930 Bytes

Versions: 70

Compression:

Stored size: 930 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

70 entries across 70 versions & 1 rubygems

Version Path
trackler-2.1.0.49 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.48 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.47 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.46 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.45 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.44 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.43 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.42 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.41 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.40 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.39 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.38 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.37 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.36 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.34 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.33 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.32 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.31 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.30 tracks/pony/exercises/roman-numerals/test.pony
trackler-2.1.0.29 tracks/pony/exercises/roman-numerals/test.pony