• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

TyRoXx / NonlocalityOS / 14776866710

01 May 2025 02:13PM UTC coverage: 77.956% (+0.3%) from 77.611%
14776866710

Pull #227

github

web-flow
Merge 57ddd5b7b into 3008f5ee2
Pull Request #227: Remove obsolete code

358 of 397 new or added lines in 9 files covered. (90.18%)

2 existing lines in 2 files now uncovered.

4035 of 5176 relevant lines covered (77.96%)

1822.14 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

77.78
/lambda/src/standard_library.rs
1
use astraea::tree::{BlobDigest, Value, ValueBlob};
2

3
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord)]
4
pub struct ConsoleOutput {
5
    pub message: BlobDigest,
6
}
7

8
impl ConsoleOutput {
9
    pub fn to_value(&self) -> Value {
3✔
10
        Value::new(ValueBlob::empty(), vec![self.message])
3✔
11
    }
12

13
    pub fn from_value(value: &Value) -> Option<ConsoleOutput> {
1✔
14
        if value.blob().len() != 0 {
1✔
NEW
15
            return None;
×
16
        }
17
        if value.references().len() != 1 {
1✔
NEW
18
            return None;
×
19
        }
20
        Some(ConsoleOutput {
1✔
21
            message: value.references()[0],
1✔
22
        })
23
    }
24
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc