Created
August 23, 2014 09:42
-
-
Save aldesantis/bb09c48346108ba4bfc4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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