An open API service indexing awesome lists of open source software.

https://github.com/fredwu/slurp

Switch to an in-memory sqlite database in Rails for speedy tests
https://github.com/fredwu/slurp

Last synced: 7 months ago
JSON representation

Switch to an in-memory sqlite database in Rails for speedy tests

Awesome Lists containing this project

README

          

# Slurp

Slurp allows you to temporarily switch to using an in-memory sqlite database with Rails without affecting your main database configuration. It comes in useful when you're doing test driven development and need the tests to run as fast as possible.

## Installation

Add this line to your application's Gemfile:

gem 'slurp'

And then execute:

$ bundle

Or install it yourself as:

$ gem install slurp

## Usage

Prepend your command with `SLURP=1` to get your database loaded in memory.

$ SLURP=1 rspec spec/