Make sure RSpec is running properly

This commit is contained in:
R. Tyler Croy 2014-07-05 15:15:31 -07:00
parent 0ce535f8b7
commit af8f61a798
4 changed files with 18 additions and 0 deletions

1
.rspec Normal file
View File

@ -0,0 +1 @@
--order random --fail-fast --format doc

6
lib/blick/events.rb Normal file
View File

@ -0,0 +1,6 @@
require 'blick/events.pb'
module Blick
module Events
end
end

View File

@ -0,0 +1,5 @@
require 'spec_helper'
require 'blick/events'
describe Blick::Events do
end

View File

@ -0,0 +1,6 @@
require 'rspec'
$LOAD_PATH.unshift(File.expand_path(__FILE__) + '/../')
RSpec.configure do |c|
end