We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
run_test
.move
.exp
Stems from #1979 (comment)
Document that the output produced by each .move file will get matched against the expected output defined in the respective .exp file:
pub async fn run_test_impl<'a, Adapter>( path: &Path, fully_compiled_program_opt: Option<Arc<FullyCompiledProgram>>, ) -> Result<(), Box<dyn std::error::Error>> where Adapter: MoveTestAdapter<'a>, Adapter::ExtraInitArgs: Debug, Adapter::ExtraPublishArgs: Debug, Adapter::ExtraValueArgs: Debug, Adapter::ExtraRunArgs: Debug, Adapter::Subcommand: Debug, { let output = handle_actual_output::<Adapter>(path, fully_compiled_program_opt).await?; handle_expected_output(path, output.0)?; Ok(()) }
The text was updated successfully, but these errors were encountered:
Dkwcs
Successfully merging a pull request may close this issue.
Stems from #1979 (comment)
Document that the output produced by each
.move
file will get matched against the expected output defined in the respective.exp
file:.move
file.exp
fileThe text was updated successfully, but these errors were encountered: