Initial commit

This commit is contained in:
2017-02-28 13:56:27 +00:00
commit 86d952da9a
22 changed files with 604 additions and 0 deletions

11
spec/bunnyrun_spec.rb Normal file
View File

@@ -0,0 +1,11 @@
require 'spec_helper'
RSpec.describe Bunnyrun do
it 'has a version number' do
expect(Bunnyrun::VERSION).not_to be nil
end
it 'does something useful' do
expect(false).to eq(true)
end
end

11
spec/spec_helper.rb Normal file
View File

@@ -0,0 +1,11 @@
require 'bundler/setup'
require 'bunnyrun'
RSpec.configure do |config|
# Enable flags like --only-failures and --next-failure
config.example_status_persistence_file_path = '.rspec_status'
config.expect_with :rspec do |c|
c.syntax = :expect
end
end