0.0
No commit activity in last 3 years
No release in over 3 years
Permit to cache let variables across tests
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

>= 0
 Project Readme

RspecLetCache

This gem permits to cache rspec test values used/shared across tests and thus, it reduces dramatically the time to run involved tests.

Results for "features" example: A test image

Installation

Add this line to your application's Gemfile:

group :test do
  gem 'rspec_let_cache'
end

And then execute:

$ bundle install

Load dependency to be available in your tests

# spec/spec_helper.rb
require 'rspec_let_cache'

Structure

let_cache(<variable_name>){ 
  block to calculate value
  return calculated value
}

The first time variable_name is called, then the block to calculate value is evaluated and saved as a cache value. The next time the variable is called, then it returns the corresponding cached value.

Examples

Reusing controller response

describe 'when checking response content', type: :controller do
  render_views
  let_cache(:articles_cached) do
    [Article.create!(title: 'article 1'), Article.create!(title: 'article 2')]
  end
  let_cache(:response_cached) do
    articles_cached
    get :index
    response
  end

  it 'includes first article\'s title' do
    expect(response_cached.body).to include(articles_cached.first.title)
  end

  it 'includes second article\'s title' do
    expect(response_cached.body).to include(articles_cached.second.title)
  end
end    

Reusing features page content

describe 'index page', type: :feature do
  let_cache(:articles_cached) do
    [Article.create!(title: 'article 1'), Article.create!(title: 'article 2')]
  end
  
  # Make capybara page to be reusable by passing feature: true
  let_cache(:page_cached, feature: true) do
    articles_cached
    visit articles_path
    page
  end
  
  describe 'when checking page content' do
    it 'includes first article' do
      expect(page_cached).to have_content(articles_cached.first.title)
    end
  
    it 'includes second article' do
      expect(page_cached).to have_content(articles_cached.second.title)
    end
  
    it 'includes button to delete' do
      expect(page_cached).to have_css('#articles_table .edit_button')
    end
  end
end

Note: Articles page is visited just one time.

Contributing

Contribution directions go here.

License

The gem is available as open source under the terms of the MIT License.