Pentole/tests/string_tests.fs
Francesco Mecca c3c92f81e2 first
2024-08-29 11:35:03 +02:00

13 lines
216 B
Forth

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