mirror of
https://github.com/jimeh/bunnyrun.git
synced 2026-02-19 07:56:40 +00:00
Initial commit
This commit is contained in:
11
spec/bunnyrun_spec.rb
Normal file
11
spec/bunnyrun_spec.rb
Normal 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
11
spec/spec_helper.rb
Normal 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
|
||||
Reference in New Issue
Block a user