blob: 16f17e48ba7b146b966d0d57ded570c0f715d978 [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
use ansi_term::Colour::Red;
#[test]
fn stdout_ansi_test() {
println!("{}", Red.paint("red stdout"));
}
#[fuchsia::test]
fn log_ansi_test() {
tracing::info!("{}", Red.paint("red log"));
}