Sha256: 3871823eb74a0ecfbaa7336996ad143c43c2554478d784c8cbafe75591e4c28d
Contents?: true
Size: 593 Bytes
Versions: 326
Compression:
Stored size: 593 Bytes
Contents
if !System.get_env("EXERCISM_TEST_EXAMPLES") do Code.load_file("nth_prime.exs", __DIR__) end ExUnit.start ExUnit.configure exclude: :pending, trace: true defmodule NthPrimeTest do use ExUnit.Case # @tag :pending test "first prime" do assert Prime.nth(1) == 2 end @tag :pending test "second prime" do assert Prime.nth(2) == 3 end @tag :pending test "sixth prime" do assert Prime.nth(6) == 13 end @tag :pending test "100th prime" do assert Prime.nth(100) == 541 end @tag :pending test "weird case" do catch_error Prime.nth(0) end end
Version data entries
326 entries across 326 versions & 1 rubygems