Pentole/tests/string_tests.fs
2024-12-12 10:37:42 +01:00

11 lines
199 B
Forth

module Tests.String
open NUnit.Framework
open Pentole.TestsExtensions
open Pentole
[<Test>]
let split_test () =
let target = "a/b/c"
seqEqual (target.Split("/")) (String.split "/" target)