Sha256: 5d3bf5ed31728a01ce99f9bca41c2e2b478f8657a1fec57dedcf4a481887826b
Contents?: true
Size: 803 Bytes
Versions: 306
Compression:
Stored size: 803 Bytes
Contents
using Base.Test include("isogram.jl") @testset "empty string" begin @test isisogram("") end @testset "isogram with only lower case characters" begin @test isisogram("isogram") end @testset "word with one duplicated character" begin @test !isisogram("eleven") end @testset "longest reported english isogram" begin @test isisogram("subdermatoglyphic") end @testset "word with duplicated character in mixed case" begin @test !isisogram("Alphabet") end @testset "hypothetical isogrammic word with hyphen" begin @test isisogram("thumbscrew-japingly") end @testset "isogram with duplicated non letter character" begin @test isisogram("Hjelmqvist-Gryb-Zock-Pfund-Wax") end @testset "made-up name that is an isogram" begin @test isisogram("Emily Jung Schwartzkopf") end
Version data entries
306 entries across 306 versions & 1 rubygems