Pentole/tests/string_tests.fs

13 lines
216 B
Forth
Raw Normal View History

2024-08-29 11:35:03 +02:00
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)