features/testunit_kata.feature in shuhari-0.1.0 vs features/testunit_kata.feature in shuhari-0.1.1
- old
+ new
@@ -46,43 +46,55 @@
@osx
Scenario: OS X
When I run `shuhari new FizzBuzz --testunit`
Then the file "fizz_buzz/Gemfile" should contain:
"""
+ source 'https://rubygems.org'
+
group :development do
+ gem 'shuhari'
gem 'test-unit'
gem 'guard-test'
gem 'coolline', :require => false
gem 'growl'
# gem 'growl_notify'
# gem 'ruby_gntp'
+ # gem 'terminal-notifier-guard'
gem 'rb-fsevent'
end
"""
@linux
Scenario: Linux
When I run `shuhari new FizzBuzz --testunit`
Then the file "fizz_buzz/Gemfile" should contain:
"""
+ source 'https://rubygems.org'
+
group :development do
+ gem 'shuhari'
gem 'test-unit'
gem 'guard-test'
gem 'coolline', :require => false
gem 'libnotify'
+ # gem 'ruby_gntp'
gem 'rb-inotify'
end
"""
@windows
Scenario: Windows
When I run `shuhari new FizzBuzz --testunit`
Then the file "fizz_buzz/Gemfile" should contain:
"""
+ source 'https://rubygems.org'
+
group :development do
+ gem 'shuhari'
gem 'test-unit'
gem 'guard-test'
gem 'rb-notifu'
gem 'win32console'
+ # gem 'ruby_gntp'
gem 'wdm'
end
"""