You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let written_json = serde_json::Value::from_str(&written_json).unwrap();
199
215
assert_eq!(written_json, json);
200
216
}
217
+
218
+
#[test]
219
+
fntest_save_upgrade_planner(){
220
+
let bp = "0eNqtkdFqwzAMRf9FzwmUNmkbQ7+klKGuagjEsisroyX43ycz1sIGWx/6ZOkiXx10Z5hiL3iitzgiMwm4GRKpDtynUnuMkcTK/QxnCb5oeosEDoh10BtUwOhLr4KcYhCtjzSq6ZcJxzLhgIN4HE16Dz6ioAZbBDvIFWj4w/KMSesfvvZn4BNdwS1y9S/UZKPSS7D3xVi/nB9gzRNgKRqE2sFfBnR3fIBs86E0Sr6c4ivp+jvpCj4s2SEwuHa97JquazerdtVsljl/Ag1ntSg=";
221
+
let dir = tempfile::tempdir().unwrap();
222
+
let json = crate::blueprint::blueprint_to_json(bp);
223
+
let json = serde_json::Value::from_str(&json).expect("should contain valid json");
0 commit comments