Began moving session tests into library tests.
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 0s
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 0s
This commit is contained in:
@@ -10,7 +10,7 @@ mod show;
|
||||
mod update;
|
||||
mod user;
|
||||
|
||||
pub use crate::document::{DocDef, Field, FieldType, Records};
|
||||
pub use crate::document::{DocDef, Field, FieldType, Record, Records};
|
||||
pub use action_type::Action;
|
||||
pub use addition::Addition;
|
||||
pub use calculation::{CalcValue, Calculation, Operand};
|
||||
|
||||
@@ -11,5 +11,5 @@ pub use clock::Clock;
|
||||
pub use create::CreateDoc;
|
||||
pub use definition::DocDef;
|
||||
pub use field::{Field, FieldType};
|
||||
pub use record::Records;
|
||||
pub use record::{Record, Records};
|
||||
pub use session::Session;
|
||||
|
||||
@@ -163,6 +163,7 @@ mod sessions {
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
#[test]
|
||||
fn is_session_document_created() {
|
||||
let setup = Setup::new();
|
||||
@@ -232,6 +233,7 @@ mod sessions {
|
||||
_ => unreachable!("got {:?}, should have gotten records", action),
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
#[test]
|
||||
#[ignore]
|
||||
|
||||
@@ -2,7 +2,7 @@ pub mod action;
|
||||
mod document;
|
||||
mod message;
|
||||
mod mtterror;
|
||||
mod name;
|
||||
pub mod name;
|
||||
mod queue;
|
||||
|
||||
use action::*;
|
||||
|
||||
Reference in New Issue
Block a user