[][src]Trait interface_tests_helpers::ResponseHandler

pub trait ResponseHandler {
    fn assert_200(&self);
fn assert_201(&self);
fn assert_204(&self);
fn assert_400(&self);
fn assert_401(&self);
fn assert_403(&self);
fn assert_404(&self);
fn assert_409(&self);
fn assert_500(&self); }

Required methods

fn assert_200(&self)

fn assert_201(&self)

fn assert_204(&self)

fn assert_400(&self)

fn assert_401(&self)

fn assert_403(&self)

fn assert_404(&self)

fn assert_409(&self)

fn assert_500(&self)

Loading content...

Implementations on Foreign Types

impl ResponseHandler for Response[src]

fn assert_200(&self)[src]

Assertion that checks the response status code is 200

fn assert_201(&self)[src]

Assertion that checks the response status code is 201

fn assert_204(&self)[src]

Assertion that checks the response status code is 204

fn assert_400(&self)[src]

Assertion that checks the response status code is 400

fn assert_401(&self)[src]

Assertion that checks the response status code is 401

fn assert_403(&self)[src]

Assertion that checks the response status code is 403

fn assert_404(&self)[src]

Assertion that checks the response status code is 404

fn assert_409(&self)[src]

Assertion that checks the response status code is 409

fn assert_500(&self)[src]

Assertion that checks the response status code is 500

Loading content...

Implementors

Loading content...