linera-client 0.15.21

A library for writing Linera client applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

use crate::util::parse_app_set;

#[test]
fn parse_app_set_accepts_empty() {
    assert!(parse_app_set("").unwrap().is_empty());
    assert!(parse_app_set("   ").unwrap().is_empty());
    assert!(parse_app_set("not-an-application-id").is_err());
}