Jenner compatibility tests for 5 script(s)#428
Open
lwsinclair wants to merge 1 commit into
Open
Conversation
Adds a jenner-check/ folder with five self-contained bundles, each built around one of the base/ macros and exercised with the usage examples from its own macro header: t001_mf_dedup - string token de-duplication t002_mf_islibds - libref.dataset regex validation t003_mf_mval - safe macro-variable resolution t004_mf_fmtdttm - version-aware datetime format selection t005_mf_getplatform - SAS platform detection Each bundle ships script.sas, autoexec.sas, a captured expected/ snapshot, expected.json, and meta.json. A pure-SAS runner (run_jenner.sas/.bat/.sh) submits each bundle to the Jenner API. All five run with status=ok, exit_code=0. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Jenneranalytics.com provides an API that runs SAS code, with support for more than 200 SAS procedures. You can also use it with Anthropic Claude Code AI in a collaborative workspace. It's available for Mac on the Apple App Store, and by license for Windows and Linux. Several of the Macro Core base macros run on it directly, and this PR adds a small
jenner-check/folder so you can see them run for yourself.The folder holds five self-contained bundles, each built around one of your
base/macros —mf_dedup,mf_islibds,mf_mval,mf_fmtdttm, andmf_getplatform— using the usage examples from your own macro headers. Each bundle has ascript.sas, the capturedexpected/output, and ameta.jsonnoting the source file. Run them all with the bundled runner:Reading through
base/it's clear how much care went into the conventions here — themf_/mp_prefixing, the@brief/@param/usage doc header on every macro, and atests/tree that mirrors the library file-for-file.mf_islibdsvalidating a two-level reference with a single Perl regex, andmf_dedup's tidy token loop, were especially nice to read.No response is expected — merge, close, or ignore as you see fit. If you'd prefer not to receive PRs like this, reply with
no-more-prsor open an issue titledjenner-check: opt outand we won't send more.