mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 18:15:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			282 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			282 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| use flowy_grid_data_model::revision::*;
 | |
| 
 | |
| #[test]
 | |
| fn grid_default_serde_test() {
 | |
|     let grid_id = "1".to_owned();
 | |
|     let grid = GridRevision::new(&grid_id);
 | |
| 
 | |
|     let json = serde_json::to_string(&grid).unwrap();
 | |
|     assert_eq!(json, r#"{"grid_id":"1","fields":[],"blocks":[]}"#)
 | |
| }
 | 
