Sha256: 213b45ec3fc403b05e3e4a2d2efd2f72dac4834203c01cf15c32c79f765703f7
Contents?: true
Size: 695 Bytes
Versions: 34
Compression:
Stored size: 695 Bytes
Contents
// This file was auto-generated based on version 1.0.1 of the canonical data. module ReverseStringTest open FsUnit.Xunit open Xunit open ReverseString [<Fact>] let ``An empty string`` () = reverse "" |> should equal "" [<Fact(Skip = "Remove to run test")>] let ``A word`` () = reverse "robot" |> should equal "tobor" [<Fact(Skip = "Remove to run test")>] let ``A capitalized word`` () = reverse "Ramen" |> should equal "nemaR" [<Fact(Skip = "Remove to run test")>] let ``A sentence with punctuation`` () = reverse "I'm hungry!" |> should equal "!yrgnuh m'I" [<Fact(Skip = "Remove to run test")>] let ``A palindrome`` () = reverse "racecar" |> should equal "racecar"
Version data entries
34 entries across 34 versions & 1 rubygems