roda-proxy/spec/roda/proxy_spec.rb

12 lines
218 B
Ruby
Raw Normal View History

2020-03-12 16:37:13 +00:00
# frozen_string_literal: true
2020-03-12 10:14:54 +00:00
RSpec.describe Roda::Proxy do
2020-03-12 16:37:13 +00:00
it 'has a version number' do
2020-03-12 10:14:54 +00:00
expect(Roda::Proxy::VERSION).not_to be nil
end
2020-03-12 16:37:13 +00:00
it 'does something useful' do
2020-03-12 10:14:54 +00:00
expect(false).to eq(true)
end
end