Sha256: 80b350487a2ca48b86258e6bf4211d9d83381f145c68aeeb39c4fd00efba7eb4
Contents?: true
Size: 782 Bytes
Versions: 79
Compression:
Stored size: 782 Bytes
Contents
// This file was auto-generated based on version 1.3.0 of the canonical data. module AcronymTest open FsUnit.Xunit open Xunit open Acronym [<Fact>] let ``Basic`` () = abbreviate "Portable Network Graphics" |> should equal "PNG" [<Fact(Skip = "Remove to run test")>] let ``Lowercase words`` () = abbreviate "Ruby on Rails" |> should equal "ROR" [<Fact(Skip = "Remove to run test")>] let ``Punctuation`` () = abbreviate "First In, First Out" |> should equal "FIFO" [<Fact(Skip = "Remove to run test")>] let ``All caps word`` () = abbreviate "GNU Image Manipulation Program" |> should equal "GIMP" [<Fact(Skip = "Remove to run test")>] let ``Punctuation without whitespace`` () = abbreviate "Complementary metal-oxide semiconductor" |> should equal "CMOS"
Version data entries
79 entries across 79 versions & 1 rubygems