spec/sinatra/app/config_yml_spec.rb in skellington-0.8.3 vs spec/sinatra/app/config_yml_spec.rb in skellington-0.8.4
- old
+ new
@@ -3,14 +3,14 @@
let :subject do
described_class.new
end
it 'generates a config/config.yml file' do
- subject.generate 'dummy_app'
+ subject.generate 'dummy-app'
expect('dummy_app/config/config.yml').to have_content (
"""
#google-analytics-tag: UA-00000000-0
- #github_url: https://github.com
+ #github_url: https://github.com # also uncomment the `include` line in `styles.scss`
"""
)
end
end
end