8 lines
153 B
Ruby
8 lines
153 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
RSpec.describe PlanetExpress do
|
||
|
it 'has a version number' do
|
||
|
expect(PlanetExpress::VERSION).not_to be nil
|
||
|
end
|
||
|
end
|