rspec_testersai
The easiest way to AI-upgrade your existing RSpec suite. You already have the tests — this adds AI Checks at the moments that matter, without replacing your framework, runner, or CI pipeline.
analyze_* call, or define your own.include Testersai::RSpec in spec_helper; the testersai method and be_testersai_clean matcher become available.
# Download testersai-ruby-rspec-0.1.0.tar.gz from the Downloads page, then:
tar -xzf testersai-ruby-rspec-0.1.0.tar.gz
cd testersai-ruby-rspec-0.1.0
(cd testersai && gem build *.gemspec && gem install *.gem)
A complete, runnable Ruby + RSpec example.
require "rspec_testersai"
RSpec.configure { |c| c.include Testersai::RSpec }
RSpec.describe "home page" do
it "is clean" do
shot = testersai.screenshot(File.binread("home.png"))
expect(shot).to be_testersai_clean
end
end
RSpec example metadata + matcher failure messages. If the AI call fails — rate limit, hang, firewall, no network — the SDK gives up fast and returns a skipped result. Your RSpec test is never blocked.
Rule of thumb: wherever a human reviewer would pause to look during a manual run. These recommendations are tuned for RSpec — pick the ones that fit your suite.
The page just re-rendered. Ask "does this look right?" before any interaction.
Login, add-to-cart, toggle, submit. The UI just reflected a new state — where regressions hide.
You were about to check one thing. Ask the AI about everything else for free.
API returned, spinner gone, toast shown. Catch broken empty-states and stale data.
A single console + network check at the end of every test catches issues your assertions ignored.
Mobile vs. desktop, light vs. dark, locale change. One call per viewport.
Or grab the monolith ZIP (all languages, all adapters).