Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bats-core/bats-assert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-08-24Merge pull request #63 from fox-forks/hyperupcall-docs-typoHEADmasterMartin Schulze
readme: Update GitHub actions CI badge
2023-08-18readme: Update GitHub actions CI badgeEdwin Kofler
2023-07-16Merge pull request #59 from bats-core/sync-masterMartin Schulze
Rename master branch as main
2023-02-24Create sync-master.ymlJason Karns
2023-02-24Merge pull request #58 from bats-core/workflowJason Karns
Reuse shared test workflow
2023-02-23set bats_lib_path in test helperJason Karns
The installation mechanism of dependencies is unique to a project, and so the configuration of BATS_LIB_PATH should be owned by the test suite, not assumed set as an outside env var.
2023-02-23Replace inline tests workflow with reusable callJason Karns
2023-02-23commit package-lockJason Karns
While the majority of use will likely not use npm, those that do will likely lock to particular versions. Once we have a lockfile, we'll be able to more easily jump to "old" versions and reproduce installation or compatibility issues. And with dependabot, we'll be able to still stay "fresh" and not worry about developer environments masking issues by not pulling newer versions.
2023-02-23Merge pull request #55 from Mukundan314/masterJason Karns
Remove dependency of package 'verbose'
2023-02-23Merge pull request #57 from bats-core/readmeJason Karns
readme tweaks
2023-02-23Update README.mdJason Karns
2023-02-23readme tweaksJason Karns
Leverage github's new rendering for blockquoted notes and warnings.
2023-01-14Remove dependency of package 'verbose'Mukundan314
2023-01-07Merge pull request #54 from ↵Martin Schulze
bats-core/fix/issue-53-assert_regex-deems-regex-matching-empty-string-as-invalid assert_regex: matching empty string is not invalid regex
2023-01-07assert_regex: matching empty string is not invalid regexMartin Schulze
2022-10-23Bump version and fix linksv2.1.0Martin Schulze
2022-10-23Merge pull request #49 from gioele/load-sys-lib-supportMartin Schulze
test/test_helper.bash: Use bats_load_library to load bats-support
2022-10-23Simplify triggersMartin Schulze
2022-10-22Add BATS_LIB_PATHMartin Schulze
2022-10-11test/test_helper.bash: Use bats_load_library to load bats-supportGioele Barabucci
Instead of hard-coding `node_modules` in the path (source of various issues: #38, #34), use the `bats_load_library` command to load `bats-support`. `bats_load_library` is available since Bats v1.6.
2022-06-05Merge pull request #45 from rico-chet/docs-list-regex-functionsMartin Schulze
README: Add `{assert,refute}_regex` to the overview of functions
2022-06-05README: Add `{assert,refute}_regex` to the overview of functionsAlex Thiessen
Now that the pair of regex functions is complete, mention these in the top overview.
2022-05-30Merge pull request #44 from rico-chet/refute-equal-regexMartin Schulze
Add `refute_regex()`
2022-05-30README.md: Document `refute_regex`Alex Thiessen
Add a copy to the implementation, too.
2022-05-30load.bash: Include `refute_regex.bash`Alex Thiessen
2022-05-30src: Add `refute_regex.bash`Alex Thiessen
Add the function complementary to `assert_regex()`.
2022-05-30test: Add `refute_regex.bats`Alex Thiessen
2022-05-29Merge pull request #43 from rico-chet/assert-equal-regexpMartin Schulze
Add `assert_regex`
2022-05-29{src,test}/assert_regex: Make case-sensitivity transparentAlex Thiessen
2022-05-29test/assert_regex.bats: Test case-insensitive matchingAlex Thiessen
2022-05-29test/assert_regex.bats: Test `BASH_REMATCH` availabilityAlex Thiessen
2022-05-29test/assert_regex.bats: Test multi-line failure outputAlex Thiessen
2022-05-29README.md: Document `assert_regex`Alex Thiessen
Add a copy to the implementation, too.
2022-05-26load.bash: Include `assert_regex.bash`Alex Thiessen
2022-05-26src: Add `assert_regex.bash`Alex Thiessen
Add a convenient version of `[[ =~ ]]`.
2022-05-26test: Add `assert_regex.bats`Alex Thiessen
Test the new `assert_regex` function.
2022-03-04Fix markdownMartin Schulze
2022-03-04Fix test badgeMartin Schulze
rename github workflow to get better label/badge
2022-03-04Merge pull request #30 from nkakouros-forks/negative_indexMartin Schulze
Allows negative indexes in line assertions
2022-03-04Merge pull request #41 from bats-core/martin-schulze-vireso-patch-1Martin Schulze
Add Github Action for running tests
2022-03-04Remove travis.ymlMartin Schulze
the free service for open source projects was cancelled
2021-12-10Don't require package-log.jsonMartin Schulze
2021-12-10Fix lock not found with setup-nodeMartin Schulze
the default does not work without lock file
2021-12-10Add Github Action for running testsMartin Schulze
2021-12-10Merge pull request #39 from stefanlasiewski/patch-1Martin Schulze
Fix: First two examples are backwards/confusing
2021-12-10docs: Avoid ambiguity in examples for assert/refuteMartin Schulze
2021-11-11Fix: First two examples are backwardsStefan Lasiewski
The file must be removed for `assert` to fail, as shown in the example. The file must exist for `refute` to fail.
2021-11-05Merge pull request #37 from jwheeler31/masterMartin Schulze
Add support for 'assert_not_equal'.
2021-11-04Added missing assertion.Josh Wheeler
2021-10-19Add support for 'assert_not_equal'.Josh Wheeler