rspec - Rails 3.2 can't find my tests, thinks they are in "test" directory -
i trying user rspec , failing configure minitest/spork/capybara/guard. gemfile set , ran command install rspec.
unfortunately, application continues "think" tests in test
directory. sorry, they're not. they're in specs
, , framework should know that.
maybe it's sort of configuration issue trying impossible stack above work still have in place. rails "decide" in directory tests? rspec
1 created spec
directory.
this how rspec-rails
should included in gemfile
.
group :development, :test gem 'rspec-rails', '2.11.0' end
make sure added in both :development
, :test
group.
Comments
Post a Comment