busbar-sf-api 0.0.3

Salesforce API client library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Integration test suite (requires a real Salesforce org).
//!
//! Run all integration tests with:
//!   SF_AUTH_URL=... cargo test --test integration -- --nocapture

#[path = "integration/auth.rs"]
mod auth;
#[path = "integration/bulk.rs"]
mod bulk;
#[path = "integration/common.rs"]
mod common;
#[path = "integration/metadata.rs"]
mod metadata;
#[path = "integration/rest.rs"]
mod rest;
#[path = "integration/tooling.rs"]
mod tooling;