Files
bunnyrun/spec/bunnyrun_spec.rb
2017-02-28 13:56:27 +00:00

12 lines
204 B
Ruby

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