{"id":18552705,"url":"https://github.com/stuartleeks/pestermatchhashtable","last_synced_at":"2026-03-06T10:32:03.402Z","repository":{"id":76969025,"uuid":"63096305","full_name":"stuartleeks/PesterMatchHashtable","owner":"stuartleeks","description":"Hashtable assertions for Pester","archived":false,"fork":false,"pushed_at":"2019-10-08T21:06:59.000Z","size":9,"stargazers_count":9,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-20T07:29:21.806Z","etag":null,"topics":["powershell","testing"],"latest_commit_sha":null,"homepage":null,"language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stuartleeks.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-07-11T19:32:52.000Z","updated_at":"2024-06-01T19:09:11.000Z","dependencies_parsed_at":"2023-05-01T11:48:11.609Z","dependency_job_id":null,"html_url":"https://github.com/stuartleeks/PesterMatchHashtable","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/stuartleeks/PesterMatchHashtable","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stuartleeks%2FPesterMatchHashtable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stuartleeks%2FPesterMatchHashtable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stuartleeks%2FPesterMatchHashtable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stuartleeks%2FPesterMatchHashtable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stuartleeks","download_url":"https://codeload.github.com/stuartleeks/PesterMatchHashtable/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stuartleeks%2FPesterMatchHashtable/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30171869,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T07:56:45.623Z","status":"ssl_error","status_checked_at":"2026-03-06T07:55:55.621Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["powershell","testing"],"created_at":"2024-11-06T21:14:56.703Z","updated_at":"2026-03-06T10:32:03.375Z","avatar_url":"https://github.com/stuartleeks.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PesterMatchHashtable\nThis module provides additional assertions for [Pester](https://github.com/pester/Pester) to help with testing hash table contents\n\nAlso see [PesterMatchArray](https://github.com/stuartleeks/PesterMatchArray) for array assertions.\n\n[![Build status](https://ci.appveyor.com/api/projects/status/50vdbyyjaorv8c6v/branch/master?svg=true)](https://ci.appveyor.com/project/stuartleeks/pestermatchhashtable/branch/master)\n\n## Installation\n\n### PowerShell Gallery\n\nYou can install [PesterMatchHashtable](https://www.powershellgallery.com/packages/PesterMatchHashtable/) via the [PowerShell Gallery](https://www.powershellgallery.com/)\n\n```powershell\nInstall-Module -Name PesterMatchHashtable\n```\n\n## Examples\n\nMatchHashtable compares two hashtables.\n\n```powershell\nDescribe \"MatchHashtable examples\" {\n\tIt \"single item hashtables match\" {\n       @{\"a\"=1} | Should MatchHashtable @{\"a\"=1}\n    }\n    It \"hashtables  with the same contents match\" {\n        @{\"a\"=1;\"b\"=\"wibble\"} | Should MatchHashtable @{\"b\"=\"wibble\";\"a\"=1}\n    }\n    It \"hashtables with different lengths do not match\" {\n        @{\"a\"=1} | Should Not MatchHashtable @{\"b\"=\"wibble\";\"a\"=1}\n    }\n    It \"hashtables with different lengths do not match\" {\n        @{\"a\"=1;\"b\"=\"wibble\"} | Should Not MatchHashtable @{\"b\"=\"wibble\"}\n    }\n    It \"hashtables with different values do not match\" {\n        @{\"a\"=1;\"b\"=\"wibble\"} | Should Not MatchHashtable @{\"a\"=123; \"b\"=\"wibble\"}\n    }\n}\n```\n\n## Release Notes\n\n### Version 0.3.0 27th July 2017\nPushed to PowerShell Gallery\n\nUpdated to work with Pester v4 (tested on 4.0.5 pre-release)\n\n### Version 0.0.1 11th July 2016\nPushed to PowerShell Gallery\n\nInitial version of PesterMatchHashtable\n\n## Future\n* Wrap up to publish to chocolatey, psget","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstuartleeks%2Fpestermatchhashtable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstuartleeks%2Fpestermatchhashtable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstuartleeks%2Fpestermatchhashtable/lists"}