mirror of
https://github.com/Smaug123/unofficial-nunit-runner
synced 2025-10-05 17:38:40 +00:00
17 lines
353 B
Forth
17 lines
353 B
Forth
namespace Consumer
|
|
|
|
open System
|
|
open FsUnitTyped
|
|
open System.IO
|
|
open NUnit.Framework
|
|
|
|
[<TestFixture>]
|
|
module TestAppDomain =
|
|
|
|
[<Test>]
|
|
let ``Can load config`` () =
|
|
Path.Combine (AppDomain.CurrentDomain.BaseDirectory, "some-config.json")
|
|
|> File.ReadAllText
|
|
|> fun s -> s.Trim ()
|
|
|> shouldEqual """{"hi":"bye"}"""
|