YAML-based configuration for initializing Git repositories for unit testing
Project description
repo-smith
YAML-based configuration for Git repository initialization for unit testing
Installation
pip install -U repo-smith
Usage
Create a new configuration file (following the specification).
# File path: tests/specs/basic_spec.yml
name: Basic spec
description: Starting basic spec
initialization:
steps:
- name: Create filea.txt
type: new-file
filename: filea.txt
contents: |
Hello world
- name: Add filea.txt
type: add
files:
- filea.txt
- name: Initial commit
type: commit
message: Initial commit
id: initial-commit
- name: v0 tag
type: tag
tag-name: v0
Create a unit test accordingly.
from repo_smith.initialize_repo import initialize_repo
from git import Repo
def test_dummy():
repo_initializer = initialize_repo("test/specs/basic_spec.yml")
with repo_initializer.initialize() as repo:
# All unit testing code for the dummy repository goes here
print(repo)
For more use cases of repo-smith, refer to:
FAQ
Why don't you assign every error to a constant and unit test against the constant?
Suppose the constant was X, and we unit tested that the error value was X, we would not capture any nuances if the value of X had changed by accident.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file repo_smith-2.7.0.tar.gz.
File metadata
- Download URL: repo_smith-2.7.0.tar.gz
- Upload date:
- Size: 71.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e436f2b913abf42b8bc80c32c9e0c9d6be64f92c1d115a5b501eb5d45af74e7
|
|
| MD5 |
b3a145c5b68c8cad746095ed2f86ec37
|
|
| BLAKE2b-256 |
bf5c360c42288245362732f655697143ebd097b5413c5edec30500049d718cca
|
File details
Details for the file repo_smith-2.7.0-py3-none-any.whl.
File metadata
- Download URL: repo_smith-2.7.0-py3-none-any.whl
- Upload date:
- Size: 35.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8431b8e6dac72d5f79ce6524ed6c1d2140accaf0ba89017258c06be99ff89b1b
|
|
| MD5 |
302d52426b8930e745e62941cb6b2cef
|
|
| BLAKE2b-256 |
416523ce3613c580e4f6406868e896dff728757ffd4c0b9b1e28dbe1fbbc0384
|