Files
galaxy/crates/warp_util/src/content_version_test.rs
T

23 lines
388 B
Rust

use super::*;
#[test]
fn test_create_version() {
ContentVersion::new();
}
#[test]
fn test_versions_equal() {
let version1 = ContentVersion::new();
let version2 = version1;
assert_eq!(version1, version2);
}
#[test]
fn test_versions_not_equal() {
let version1 = ContentVersion::new();
let version2 = ContentVersion::new();
assert_ne!(version1, version2);
}