Tests/Functions/Public/Get-OBNClient.tests.ps1

# load the module
Import-Module PSOnebyte -Force

# run tests
Describe "Get-OBNClient public function tests" {
    Context "Basic functionality" {
        It "Function can be loaded." {
            { 
                Get-Help Get-OBNClient -ErrorAction Stop
            } | Should Not Throw
        }
    }
}