mirror of
https://github.com/jimeh/bunnyrun.git
synced 2026-02-19 07:56:40 +00:00
12 lines
204 B
Ruby
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
|