MCPcopy Create free account
hub / github.com/Axect/Peroxide / test_is_empty

Function test_is_empty

tests/dataframe/dataframe.rs:102–108  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

100
101#[test]
102fn test_is_empty() {
103 let df = sample_df();
104 assert!(!df.is_empty());
105
106 let empty_df = DataFrame::new(vec![]);
107 assert!(empty_df.is_empty());
108}
109
110#[test]
111fn test_contains() {

Callers

nothing calls this directly

Calls 1

sample_dfFunction · 0.85

Tested by

no test coverage detected