rspec testing

rails new myapp –skip-test-unit

cd myapp

When you’re not going ‘minitest’ way, then you don’t need test directory. And

https://github.com/rspec/rspec-rails

https://relishapp.com/rspec/rspec-rails/docs

https://relishapp.com/rspec/rspec-rails/docs/generators

https://github.com/jnicklas/capybara

follow readme & documentation! For now (when I’m typing this) it says:

# in 'Gemfile' file
group :development, :test do
  gem 'rspec-rails', '~> 3.0'
end

group :test do
  gem 'capybara'
end

bundle install

rails generate rspec:install

# in 'spec/rails_helper.rb' file
require 'capybara/rails'

Now I start, and will get back to you.

 
1
Kudos
 
1
Kudos

Now read this

install zsh ubuntu 14.04 LTS

What I did is… open ubuntu software center and install “Shell with lots of features” (the first one on top when search by “zsh”) then did this (alternate way to install zsh) and, got “don’t have to” message. $ sudo apt-get update... Continue →