Closed simao closed 11 years ago
@simao Sorry about the delay in getting back to you - I was travelling this past week. So when you load tconsole initially it's running your tests without you telling it to? Most likely there's a load issue going on. Can you send me your Gemfile? Feel free to email me at alan@commondream.net if you don't want to share it publicly.
Hello Alan,
No worries, of course, thanks for getting back.
Here's my gemfile
source 'https://rubygems.org'
gem 'rails', '3.2.2'
gem 'sqlite3'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem "paperclip", "~> 2.7"
gem 'skeleton-rails'
group :development do
end
group :development, :test do
gem "minitest-rails"
gem "tconsole", :git => "https://github.com/commondream/tconsole.git"
gem "test-unit"
gem "populator"
gem "rvm"
gem "guard"
gem "guard-test"
gem "spork"
gem "spork-testunit"
gem 'guard-spork'
gem 'ruby-debug19', :require => 'ruby-debug'
end
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
Closing since I wasn't ever able to reproduce this issue.
I am getting the following errors when trying to run my tests with tconsole:
This happens after I run
bundle exec tconsole
, my tests are automatically executed one time and everything works, but when I runall
, this happens.Any ideas?
Thanks