Move specs into specs/lib

This commit is contained in:
2018-04-07 00:04:14 +01:00
parent bc523aec17
commit 2fc3597307
3 changed files with 21 additions and 13 deletions

View File

@@ -1,13 +0,0 @@
# 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

View File

@@ -0,0 +1,9 @@
# 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
end