Skip to content

rspec_test

Ruby Specification (RSpec) tests run through Once.

Start Here

The selected ruby interpreter must be able to load rspec/core. Use the Ruby environment already managed by the project. The interpreter may be a name on the executable search path, an absolute path, or a workspace-relative path. A common direct installation is:

sh
gem install rspec

Retrieve the runnable starter when you want a complete declaration and sample specifications:

sh
once query example rspec_test rspec-test-minimal --format json

Copy the declaration below into once.toml, adjust srcs and the Ruby environment for the project, then establish discovery and run the file batches:

sh
once test tests --format json
once query test-manifest tests --format json
once test tests --jobs 4 --format json

The first command runs the complete target. Later runs can use the resulting manifest for automatic batching and exact selection. See Testing and Scheduling for affected plans, case-level batching, and exact unit commands.

Description

rspec_test invokes the Ruby Specification core runner with its structured formatter, converts examples into stable target-qualified identifiers, and writes normalized Once results. Exact execution passes the native example identifier back to the runner.

Automatic batching uses one batch per specification file by default. Set batching to case for individual examples, or target for one target batch. A complete discovery run is required before smaller batches are planned.

Attributes

AttributeTypeRequiredDefaultDescription
rubystringnorubyRuby interpreter name, absolute path, or workspace-relative path that can load the Ruby Specification library
configlist<string>noGemfile, Gemfile.lockDependency and runner configuration inputs
datalist<string>no[]Runtime data and support inputs
argslist<string>no[]Additional runner arguments
envmap<string, string>no{}Explicit test environment variables
env_inheritlist<string>no[]Host environment variables inherited by name
batchingstringnofileAutomatic granularity: file, case, or target
labelslist<string>no[]Labels exposed through test discovery
timeout_msintnoemptyOptional timeout in milliseconds

Dependency Edges

deps names targets whose changes should select this test target.

Providers and Capabilities

The target emits once_test_info and exposes test with the default, test_results, and logs output groups.

Example

toml
[[target]]
name = "tests"
kind = "rspec_test"
srcs = ["spec/**/*_spec.rb"]

[target.attrs]
env_inherit = ["GEM_HOME", "GEM_PATH"]

List helper files and other runtime inputs in data when they are outside the source patterns.

Released under an open-source license.