Files
bunnyrun/spec/bunnyrun_spec.rb

14 lines
235 B
Ruby

# frozen_string_literal: true
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