summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Jorgensen <stevej@stevej.name>2014-03-22 14:45:21 -0700
committerSteve Jorgensen <stevej@stevej.name>2014-03-22 14:45:21 -0700
commit10e296dfc87e3f8422839589593e8f85e9da2aa6 (patch)
tree350da95a769fa0b6f9d803b18855c38d5d4fd78a
parent1bf9883d71459a6faea826886090fcbd5582c3c3 (diff)
downloadbundler-10e296dfc87e3f8422839589593e8f85e9da2aa6.tar.gz
Fix redundant and slightly silly descriptions in gem spec template
-rw-r--r--lib/bundler/templates/newgem/spec/newgem_spec.rb.tt4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt b/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt
index 469a2ffa80..2549af4c11 100644
--- a/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt
+++ b/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt
@@ -1,11 +1,11 @@
require 'spec_helper'
describe <%= config[:constant_name] %> do
- it 'should have a version number' do
+ it 'has a version number' do
expect(<%= config[:constant_name] %>::VERSION).not_to be nil
end
- it 'should do something useful' do
+ it 'does something useful' do
expect(false).to eq(true)
end
end