SlackClone / slack_clone

SlaDock 是台灣版 Slack 和 Flowdock 的結合。希望藉由這個網站來提高使用者的工作效率!
https://www.sladock.tw
5 stars 4 forks source link

Add RSpec #2

Closed DC7806 closed 4 years ago

DC7806 commented 4 years ago
# only test group in Gemfile
gem 'rspec', '~> 3.9'
gem 'rspec-rails', '~> 4.0', '>= 4.0.1'
gem 'guard', '~> 2.16', '>= 2.16.2'
gem 'guard-rspec', '~> 4.7', '>= 4.7.3'
gem 'factory_bot', '~> 6.1'
gem 'factory_bot_rails', '~> 6.1'

# development / test group in Gemfile
gem 'faker', '~> 2.13'list requirements here

可考慮:shoulda-matchers (驗證套件, 安裝時要放在 Gemfile 的 test group 裡) https://github.com/thoughtbot/shoulda-matchers

rzchen commented 4 years ago