Skip to content

Instantly share code, notes, and snippets.

@aldesantis
Created August 23, 2014 09:42
Show Gist options
  • Save aldesantis/bb09c48346108ba4bfc4 to your computer and use it in GitHub Desktop.
Save aldesantis/bb09c48346108ba4bfc4 to your computer and use it in GitHub Desktop.
require 'rails_helper'
RSpec.describe Processable do
before(:all) do
Temping.create :processable_model do
include Processable
with_columns do |t|
t.boolean :processable, default: false
end
end
end
subject { ProcessableModel.new }
# ...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment