{"id":22529449,"url":"https://github.com/test-kitchen/busser-minitest","last_synced_at":"2025-08-03T23:33:13.416Z","repository":{"id":7952537,"uuid":"9347941","full_name":"test-kitchen/busser-minitest","owner":"test-kitchen","description":"A Busser runner plugin for the minitest testing library","archived":false,"fork":false,"pushed_at":"2023-12-15T14:56:22.000Z","size":60,"stargazers_count":9,"open_issues_count":5,"forks_count":5,"subscribers_count":16,"default_branch":"main","last_synced_at":"2024-04-14T04:20:55.388Z","etag":null,"topics":["hacktoberfest","managed-by-terraform","ruby","ruby-gem","test-kitchen","testing"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/test-kitchen.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2013-04-10T14:27:22.000Z","updated_at":"2023-08-30T02:43:39.000Z","dependencies_parsed_at":"2023-12-19T07:50:36.277Z","dependency_job_id":null,"html_url":"https://github.com/test-kitchen/busser-minitest","commit_stats":{"total_commits":52,"total_committers":8,"mean_commits":6.5,"dds":0.5576923076923077,"last_synced_commit":"45e06a011a437f20e3896793e5e91ae3349020a0"},"previous_names":["fnichol/busser-minitest"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/test-kitchen%2Fbusser-minitest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/test-kitchen%2Fbusser-minitest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/test-kitchen%2Fbusser-minitest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/test-kitchen%2Fbusser-minitest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/test-kitchen","download_url":"https://codeload.github.com/test-kitchen/busser-minitest/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228571841,"owners_count":17938773,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["hacktoberfest","managed-by-terraform","ruby","ruby-gem","test-kitchen","testing"],"created_at":"2024-12-07T07:14:45.756Z","updated_at":"2024-12-07T07:14:46.429Z","avatar_url":"https://github.com/test-kitchen.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \u003ca name=\"title\"\u003e\u003c/a\u003e Busser::RunnerPlugin::Minitest\n\n[![Gem Version](https://badge.fury.io/rb/busser-minitest.png)](http://badge.fury.io/rb/busser-minitest)\n[![Build Status](https://travis-ci.org/test-kitchen/busser-minitest.png?branch=master)](https://travis-ci.org/test-kitchen/busser-minitest)\n[![Code Climate](https://codeclimate.com/github/test-kitchen/busser-minitest.png)](https://codeclimate.com/github/test-kitchen/busser-minitest)\n\nA Busser runner plugin for the [minitest][minitest_site] testing library\n\n## Status\n\nThis software project is no longer under active development as it has no active maintainers. The software may continue to work for some or all use cases, but issues filed in GitHub will most likely not be triaged. If a new maintainer is interested in working on this project please come chat with us in #test-kitchen on Chef Community Slack.\n\n## \u003ca name=\"installation\"\u003e\u003c/a\u003e Installation and Setup\n\nUntil proper reference documentation is complete, the [Writing a Test](http://kitchen.ci/docs/getting-started/writing-test) section of the Test Kitchen's [Getting Started Guide](http://kitchen.ci/docs/getting-started/) gives a working example of creating test.\n\n## \u003ca name=\"usage\"\u003e\u003c/a\u003e Usage\nAssuming a cookbook with with the following structure (some directories omitted for\nbrevity), and a .kitchen.yml has been written with one suite per recipe.\n\n```\n.\n├── Berksfile\n├── Berksfile.lock\n├── CHANGELOG.md\n├── README.md\n├── Thorfile\n├── attributes\n│   └── default.rb\n├── chefignore\n├── definitions\n├── files\n│   └── default\n│       ├── bar.txt\n│       ├── foo.txt\n│       └── foobar.txt\n├── libraries\n├── metadata.rb\n├── providers\n├── recipes\n│   ├── bar.rb\n│   ├── default.rb\n│   └── foo.rb\n├── resources\n├── templates\n│   └── default\n```\n\nThe test directory follows a similar structure to the recipes directory.  In the integration directory,\nthere should be a directory for each recipe, which contains a directory for each busser being used.  In\nthis example, we're only using minitest.  Finally, the actual test files themselves live inside the busser\ndirectory.  The test files must be named either test_*.rb or *_spec.rb in order to be parsed.\n\n```\n└── test\n    └── integration\n        ├── bar\n        │   └── minitest\n        │       └── test_bar.rb\n        ├── default\n        │   └── minitest\n        │       └── test_default.rb\n        └── foo\n            └── minitest\n                └── test_foo.rb\n```\n\nThe test files use standard minitest assertions, constructs etc.  As an example, the test_default.rb file\nlisted above might have the following content to check for the existence of a particulare file.\n\n\n```\nrequire 'minitest/autorun'\n\ndescribe \"foobar::default\" do\n\n  it \"has created foobar.txt\" do\n    assert File.exists?(\"/usr/local/foobar.txt\")\n  end\nend\n```\n\n## \u003ca name=\"development\"\u003e\u003c/a\u003e Development\n\n* Source hosted at [GitHub][repo]\n* Report issues/questions/feature requests on [GitHub Issues][issues]\n\nPull requests are very welcome! Make sure your patches are well tested.\nIdeally create a topic branch for every separate change you make. For\nexample:\n\n1. Fork the repo\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Added some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new Pull Request\n\n## \u003ca name=\"authors\"\u003e\u003c/a\u003e Authors\n\nCreated and maintained by [Fletcher Nichol][author] (\u003cfnichol@nichol.ca\u003e)\n\n## \u003ca name=\"license\"\u003e\u003c/a\u003e License\n\nApache 2.0 (see [LICENSE][license])\n\n\n[author]:           https://github.com/enter-github-user\n[issues]:           https://github.com/enter-github-user/busser-minitest/issues\n[license]:          https://github.com/enter-github-user/busser-minitest/blob/master/LICENSE\n[repo]:             https://github.com/enter-github-user/busser-minitest\n\n[minitest_site]:    https://github.com/seattlerb/minitest\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftest-kitchen%2Fbusser-minitest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftest-kitchen%2Fbusser-minitest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftest-kitchen%2Fbusser-minitest/lists"}