fluent-asserts-vibe 0.2.0-alpha.2

Fluent assertions for Vibe.d


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

Build Status Line Coverage DUB Version DUB Installs

There are a lot of ways in which you can test an web api. Unfortunately, vibe.d does not come with utilities that allows us to write simple and nice tests. This is a library that improves your testing experience by extending the fluent-asserts library.

To begin

  1. Add the DUB dependency: https://code.dlang.org/packages/fluent-asserts
  2. Import it:

    in dub.json:

        ...
        "configurations": [
            ...
            {
                "name": "unittest",
                "dependencies": {
                    "fluent-asserts-vibe": "~>0.1.0",
                    ...
                }
            },
            ...
        ]
        ...
    

    in your source files:

    version(unittest) import fluent.asserts.vibe;
    
  3. Use it:
    unittest {
        auto request = new RequestRouter(router);

        request
            .get("/")
            .end((Response response) => {
                response.bodyString.should.not.equal("hello");
            });
    }

    unittest {
        Assert.equal(true, false, "this is a failing assert");
    }
  1. Run the tests:
➜  dub test --compiler=ldc2

API Docs

The full documentation of the fluent-asserts can be found at: http://fluentasserts.szabobogdan.com/

License

MIT. See LICENSE for details.

Authors:
  • Szabo Bogdan
Dependencies:
vibe-d:data, fluent-asserts, vibe-d:http
Versions:
1.0.0-beta.1 2022-Aug-12
0.2.0-alpha.5 2022-May-02
0.2.0-alpha.4 2021-Oct-06
0.2.0-alpha.3 2021-May-17
0.2.0-alpha.2 2021-Apr-04
Show all 11 versions
Download Stats:
  • 0 downloads today

  • 6 downloads this week

  • 50 downloads this month

  • 5395 downloads total

Score:
1.0
Short URL:
fluent-asserts-vibe.dub.pm