Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.6"
__version__ = "0.3.7"
4 changes: 2 additions & 2 deletions tests/test_cli_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ def test_display_active_pro_plan(self, mock_console):
"type": "pro",
"total": 1000,
"remaining": 200,
"period_end": "2026-07-15T00:00:00+00:00",
"period_end": "2028-07-15T00:00:00+00:00",
}
_display_credit_line(plan_credits)

call_args = mock_console.print.call_args[0][0]
assert "PRO plan" in call_args
assert "200 of 1000 remaining" in call_args
assert "expires Jul 15, 2026" in call_args
assert "expires Jul 15, 2028" in call_args

@patch("cli_output.status.console")
def test_display_expired_credits(self, mock_console):
Expand Down
Loading