-
Updated
Feb 5, 2021 - JavaScript
assertions
Here are 370 public repositories matching this topic...
-
Updated
Feb 1, 2021 - JavaScript
-
Updated
Feb 5, 2021 - JavaScript
-
Updated
Feb 7, 2021 - Java
-
Updated
Feb 7, 2021 - Kotlin
It would be nice to start building Pester on PowerShell 7 as well to see if it is compatible and keep it that way. To achieve that we need to research on which build servers v7 is already available. Right now we are building on TravisCI (Linux and MacOS), on AppVeyor (PowerShell 4+) and AzureDevOps (PowerShell 2&3).
Not sure if the build task needs to run on all three platforms, but it would be
-
Updated
Feb 7, 2021 - C#
-
Updated
Oct 29, 2019 - JavaScript
Maps.assertContainsOnly(info, actual, entries) has inconsistent behaviour if `entries` is empty
https://github.com/assertj/assertj-core/blob/f27b022a369ba731ed72413f6c10c82a9e539495/src/main/java/org/assertj/core/internal/Maps.java#L745
The call mentioned in the link fails with IllegalArgumentException if entries is empty, and actual is not. This, however, would work if actual is empty as well (the mentioned line is not executed in this case). Thus, execution success depends on `actua
Date API Proposal
Feature Request
Description:
API for Date matchers. Some matchers are inspired by Jasmine Matchers.
Possible solution:
Jasmine-like matchers:
expect(date).toBeDate(); // Matcher added
expect(date).toBeValidDate(); // Matcher added
expect(date).toBeAfter(otherDate); // Matcher added
expect(date).toBeBefore(otherDa-
Updated
Jan 21, 2021 - Go
-
Updated
Jan 24, 2021 - TypeScript
Is your feature request related to a problem? Please describe.
Currently, the MultiIndex schema component str representation is the same as
the DataFrameSchema representation
Describe the solution you'd like
the MultiIndex schema component should implement its own str representation
so that it doesn't render columns and instead shoulds the indexes.
why steps in zerocode-junit-interactive-fuzzy-search.html report are not displayed in order as they are in the json scenarios file
For example:
My scenarios in json file, I defined below steps:
{
"scenarioName": "Add Clusters: GIVEN- environment variables endpoint, WHEN- I invoke POST request, I will be able to add/update cluster for my environment",
"ignoreStepFailures": false,
"
-
Updated
Jan 17, 2021 - Lua
-
Updated
Feb 4, 2021 - Kotlin
Platform (all, jvm, js): all
Extension (none, kotlin 1.3): none
Code related feature
expect(path).toBeAnEmptyDirectory()
//instead of
expect(path)
.toBeADirectory()
.feature("findFirstFile", { Files.list(this).use { it.findFirst() } }) {
isEmpty()
}
Following the things you need to do:
logic
- extend PathAssertions with a function `toBeEmptyDi
-
Updated
Jan 28, 2021 - R
Normally, the "to be truthy" assertion does not take any value as it simply asserts that a subject can be coerced to a boolean true (in the case of "to be falsy" it is coercion to boolean false).
It seems that early on these assertions inherited an optional form where a custom message can be supplied as their argument - this was likely inspired by earlier assertions frameworks (assert on node
-
Updated
Feb 1, 2021 - JavaScript
-
Updated
Oct 4, 2020 - Kotlin
-
Updated
Feb 7, 2021 - Kotlin
-
Updated
Feb 5, 2021 - PHP
-
Updated
Oct 4, 2020 - Clojure
-
Updated
Jan 8, 2018 - JavaScript
-
Updated
Sep 12, 2020 - JavaScript
-
Updated
Feb 1, 2021 - C#
Improve this page
Add a description, image, and links to the assertions topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the assertions topic, visit your repo's landing page and select "manage topics."
Hi,
It seems like the HTTP Assert package does not allow me to specify a body to pass in a POST request for example. Looking at the
HTTPBody()function, the body argument is set tonil:req, err := http.NewRequest(method, url+"?"+values.Encode(), nil)Is this by design, or am I looking at a missing feature?
Cheers,