<feed xmlns='http://www.w3.org/2005/Atom'>
<title>emacs-wttrin/Makefile, branch v0.3.1</title>
<subtitle>Emacs frontend for Igor Chubin's wttr.in weather service
</subtitle>
<id>https://git.cjennings.net/emacs-wttrin/atom?h=v0.3.1</id>
<link rel='self' href='https://git.cjennings.net/emacs-wttrin/atom?h=v0.3.1'/>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/emacs-wttrin/'/>
<updated>2026-02-18T01:14:14+00:00</updated>
<entry>
<title>refactor: tests: standardize naming, consolidate files, and expand testutil</title>
<updated>2026-02-18T01:14:14+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2026-02-18T01:14:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/emacs-wttrin/commit/?id=28b7e4cecadce207d532b8d42346c3823450a35f'/>
<id>urn:sha1:28b7e4cecadce207d532b8d42346c3823450a35f</id>
<content type='text'>
- Expand testutil-wttrin.el with shared fixtures and macros
  (testutil-wttrin-with-clean-weather-buffer,
  testutil-wttrin-mock-http-response, sample ANSI/weather constants)
- Consolidate cache tests: port unique tests from cleanup-cache-constants
  and cleanup-cache-refactored into cleanup-cache-if-needed, delete
  obsolete files
- Extract startup-delay tests into dedicated file
- Add setup/teardown and (require 'testutil-wttrin) to all test files
- Rename all 160 tests to follow
  test-&lt;module&gt;-&lt;category&gt;-&lt;scenario&gt;-&lt;expected-result&gt; convention
- Rename integration test file and add detailed docstrings
- Update Makefile glob to discover new integration test naming pattern

Co-Authored-By: Claude Opus 4.6 &lt;noreply@anthropic.com&gt;
</content>
</entry>
<entry>
<title>feat: makefile: add smoke test target and standardize output symbols</title>
<updated>2025-11-08T22:58:51+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2025-11-08T22:58:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/emacs-wttrin/commit/?id=9074bf41fedbabfeb0e9c0bb7c3427e069bfeaab'/>
<id>urn:sha1:9074bf41fedbabfeb0e9c0bb7c3427e069bfeaab</id>
<content type='text'>
Smoke Test Target:
- Add SMOKE_TESTS variable matching test-*-smoke.el pattern
- Create test-smoke target that runs before unit/integration tests
- Implement fail-fast behavior: smoke test failures stop further execution
- Update test execution order: smoke → unit → integration (testing pyramid)
- Fix INTEGRATION_TESTS pattern to match test-*-integration-*.el
- Update help text with correct test counts for each category

Symbol Standardization:
- Replace Unicode symbols with bracketed ASCII for better portability
  - ✓ → [✓] (success/completion)
  - ✗ → [✗] (error/failure)
  - ⚠ → [!] (warning/attention)
- Apply to all targets: test, validate, compile, lint, install-deps, clean
- No color codes (were never present)
- Benefits: works in all terminals, easier to grep/parse

Test organization now:
- 1 smoke test file (package sanity checks - runs first)
- 16 unit test files (function behavior)
- 1 integration test file (component interactions)
</content>
</entry>
<entry>
<title>feat(emacs): Add asynchronous weather fetching to wttrin</title>
<updated>2025-11-04T15:09:28+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2025-11-04T15:09:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/emacs-wttrin/commit/?id=d05a8c84310ad3122c1a38f113bd93bca3f7f58a'/>
<id>urn:sha1:d05a8c84310ad3122c1a38f113bd93bca3f7f58a</id>
<content type='text'>
Introduce asynchronous data fetching to the wttrin.el Emacs package.
This enhancement avoids blocking Emacs during data retrieval by
using `url-retrieve` for async calls. The behavior is controlled via
a new customizable variable `wttrin-use-async`. Tests have been
added for the new async behavior to ensure proper functionality.feat:makefile): Add package initialization for Emacs batch

Enhance Makefile with package support by loading and initializing
MELPA archive before validating and compiling, ensuring required
packages are available during these operations.

feat(tests): Add unit tests for `wttrin--display-weather`

Introduce comprehensive tests for `wttrin--display-weather` function
to validate buffer creation, content, keybindings, and error
handling.
</content>
</entry>
<entry>
<title>feat:Makefile: Add dependency installation target</title>
<updated>2025-11-04T14:42:57+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2025-11-04T14:42:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/emacs-wttrin/commit/?id=520203cfb54091dae7647a51a5910bb094fd1c4f'/>
<id>urn:sha1:520203cfb54091dae7647a51a5910bb094fd1c4f</id>
<content type='text'>
Add a new `install-deps` target to the Makefile for setting up
required dependencies, specifically `xterm-color`, using MELPA
package repository. Enhance test process by including package
initialization in `EMACS_TEST` command.
</content>
</entry>
<entry>
<title>remove coloring from the Makefile</title>
<updated>2025-11-04T14:20:54+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2025-11-04T14:20:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/emacs-wttrin/commit/?id=9e7c7e94b1f253a77117f36a698b2321214a77cb'/>
<id>urn:sha1:9e7c7e94b1f253a77117f36a698b2321214a77cb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat:Makefile: Add Makefile for build and test automation</title>
<updated>2025-11-04T14:17:12+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2025-11-04T14:17:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/emacs-wttrin/commit/?id=cec43573a5f533086d1b3705a78d6f1846b7d250'/>
<id>urn:sha1:cec43573a5f533086d1b3705a78d6f1846b7d250</id>
<content type='text'>
Introduce a Makefile to automate common tasks for the wttrin
project. This includes running tests (unit and integration),
validating and compiling the main file, linting, and cleaning up
generated files.
</content>
</entry>
</feed>
