start using rspec for tests

This commit is contained in:
wvengen 2013-07-12 20:06:49 +02:00
parent f57038ff56
commit 7fa8193010
5 changed files with 158 additions and 8 deletions

View file

@ -52,10 +52,6 @@ group :development do
gem 'better_errors'
gem 'binding_of_caller'
# Re-enable rails benchmarker/profiler
gem 'ruby-prof'
gem 'test-unit'
# Get infos when not using proper eager loading
gem 'bullet'
@ -69,3 +65,8 @@ group :development do
# Avoid having content-length warnings
gem 'thin'
end
group :development, :test do
gem 'rspec-rails'
gem 'factory_girl_rails', '~> 4.0'
end