aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt
blob: f8ef6e8c5fc9155c54ec38e5a0fa233aedbcbc4b (plain)
1
2
3
4
5
6
7
8
9
10
11
require 'spec_helper'

describe <%= config[:constant_name] %> do
  it 'should have a version number' do
    expect(<%= config[:constant_name] %>::VERSION).not_to be nil
  end

  it 'should do something useful' do
    expect(false).to be true
  end
end