Sha256: 4f1bf9d4d60aff60e4fa7369dad9167cf6b852aa40be3e9960386221d0b83563
Contents?: true
Size: 695 Bytes
Versions: 76
Compression:
Stored size: 695 Bytes
Contents
// This file was auto-generated based on version 1.1.0 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
76 entries across 76 versions & 1 rubygems